标签:sheet nbsp sha 页面 元素 cto llb sim 大小
1.滚动条组成
2.滚动条样式修改
1 /* 滚动条出现不出现 当摸个滚动条不想让出现是可以这样*/ 2 #content_right::-webkit-scrollbar { 3 display: none; 4 }
/*样式改变代码-----------------------------------------------------*/ 5 /* 滚动条整体部分 */ 6 .topnav_box::-webkit-scrollbar 7 { 8 width:10px; 9 height:10px; 10 background-color:#d0cdc7; 11 } 12 /* scroll轨道背景 */ 13 .topnav_box::-webkit-scrollbar-track 14 { 15 -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3); 16 border-radius: 10px; 17 background-color:#d0cdc7; 18 } 19 20 /* 滚动条中能上下移动的小块 */ 21 .topnav_box::-webkit-scrollbar-thumb 22 { 23 border-radius: 10px; 24 -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3); 25 background-color:#a09d9d; 26 }
/*样式改变代码-----------------------------------------------------*/
使用是 页面元素有滚动的条的要有这个类
html:
<ul id="treemx" class="ztree topnav_box"></ul>
css: 同时css要有滚动的代码
标签:sheet nbsp sha 页面 元素 cto llb sim 大小
原文地址:https://www.cnblogs.com/ylboke/p/9198620.html