滚动条在左侧_编程笔记

滚动条在左侧

2025-05-09 13:39:02  浏览:4  作者:保利尼奥
<style> .xypg-product-list { direction: rtl; /* 从右到左的方向 */ overflow-y: scroll; /* 垂直滚动条 */ ...
<style>
    .xypg-product-list {
        direction: rtl; /* 从右到左的方向 */
        overflow-y: scroll; /* 垂直滚动条 */
        height: 200px; /* 示例高度 */
        width: 200px; /* 示例宽度 */
        border: 1px solid #ccc;
    }

    .xypg-product-list::-webkit-scrollbar-track {
        -webkit-box-shadow: inset 0 0 6px #f0f0f3;
        background-color: #f0f0f3;
    }

    .xypg-product-list::-webkit-scrollbar {
        width: 6px;
        background-color: #f0f0f3;
    }

    .xypg-product-list::-webkit-scrollbar-thumb {
        background-color: #eb1a39;
    }

    .xypg-product-list > div {
        direction: ltr; /* 内容的方向恢复正常 */
    }
</style>


上一篇:黑色白色滤镜css 兼容写法

下一篇:已经是最后一篇

评论区

共 0 条评论
  • 这篇文章还没有收到评论,赶紧来抢沙发吧~

【随机内容】

返回顶部