扫码关注官方订阅号
在我的网页上,目前,项目产品是逐行垂直列出的。
我想用可滚动的方式垂直显示它们。
如何将其更改为水平?
div class="row"> @foreach (var item in Model.CakesVM) { @Html.DisplayFor(modelItem => item.ProductName) $@Html.DisplayFor(modelItem => item.ProductPrice) }
这是当前的示例视图,项目垂直加载。
我添加了静态图像供您参考。
.product-default-slider { overflow-x: scroll; white-space: nowrap; width: 100%; scrollbar-width: thin; scrollbar-color: gray lightgray; } .product-default-slider::-webkit-scrollbar { height: 8px; } .product-default-slider::-webkit-scrollbar-thumb { background-color: gray; border-radius: 4px; } .product-horizontal-slider { display: flex; flex-wrap: nowrap; } .product__box { flex: 0 0 auto; margin-right: 10px; }
Product 1 $9.99 Product 2 $19.99 Product 3 $14.99 Product 4 $24.99 Product 5 $12.99
微信扫码关注PHP中文网服务号
QQ扫码加入技术交流群
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号
PHP学习
技术支持
返回顶部
我添加了静态图像供您参考。
.product-default-slider { overflow-x: scroll; white-space: nowrap; width: 100%; scrollbar-width: thin; scrollbar-color: gray lightgray; } .product-default-slider::-webkit-scrollbar { height: 8px; } .product-default-slider::-webkit-scrollbar-thumb { background-color: gray; border-radius: 4px; } .product-horizontal-slider { display: flex; flex-wrap: nowrap; } .product__box { flex: 0 0 auto; margin-right: 10px; }