css

当前位置:首页 > 前端 > css

滚动条在左侧

<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 条评论,查看全部
  • 这篇文章还没有收到评论,赶紧来抢沙发吧~