我是靠谱客的博主 合适狗,最近开发中收集的这篇文章主要介绍前端 页面自定义滚动条,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

示例
1062015-20190818181007811-75606317.png

代码

<div class="p-detail__table-scrollbar">
<div style="width: 3300px;height: 10px;">
</div>
</div>
<style>
.p-detail__table-scrollbar{
overflow-x: scroll;
overflow-y: hidden;
}
.p-detail__table-scrollbar::-webkit-scrollbar{
width:1px;
height: 10px;
background-color: #ccc;
border-radius: 5px;
}
.p-detail__table-scrollbar::-webkit-scrollbar-track{
border-radius: 5px;
}
.p-detail__table-scrollbar::-webkit-scrollbar-thumb{
border-radius: 5px;
background-color: #333;
}
</style>

转载于:https://www.cnblogs.com/apeandcat/p/11373299.html

最后

以上就是合适狗为你收集整理的前端 页面自定义滚动条的全部内容,希望文章能够帮你解决前端 页面自定义滚动条所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(69)

评论列表共有 0 条评论

立即
投稿
返回
顶部