谷歌下设置滚动条的css样式

南楼画角 提交于 2020-01-02 02:40:25

.oLi-lists-scroll::-webkit-scrollbar { width:5px;  padding:1px; background:url(../images/repeat-bar.png) repeat-y;}

/* Track */

.oLi-lists-scroll::-webkit-scrollbar-track {height:4px;}

/* Handle */

.oLi-lists-scroll::-webkit-scrollbar-thumb { background:url(../images/repeat-bar01.png) repeat-y; border-radius:2px; width:4px; border-left:1px solid #bfc8d2}

 

 

在设置overflow-y:auto的情况下,实现当内容多的时候加上滚动条,内容少的时候,去掉滚动条:  

<div class="a b">内容</div>

.a{ overflow:hidden}

.a.b{overflow-y:auto};

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!