标签:order res rgba color 定义 height round code 设置
滚动条提供了以下样式:
案例:
HTML
<div class="div_con"> <div class="div_con_height"></div> </div>
CSS
.div_con{ width: 100px; height: 300px; overflow: hidden; overflow-y:scroll; border: 1px solid #000; } .div_con_height{ width: 100px; height: 500px; } .div_con::-webkit-scrollbar {/*滚动条整体样式*/ width: 5px; /*高宽分别对应横竖滚动条的尺寸*/ height: 1px; } .div_con::-webkit-scrollbar-thumb {/*滚动条里面小方块*/ border-radius: 5px; -webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.2); background: #535353; } .div_con::-webkit-scrollbar-track {/*滚动条里面轨道*/ -webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.2); border-radius: 5px; background: #fff; }
注意:直接写样式 ::-webkit-scrollbar 可以修改全局的滚动条(包括默认侧边滚动条)
标签:order res rgba color 定义 height round code 设置
原文地址:https://www.cnblogs.com/ffyun/p/13826415.html