标签:ack ash 谷歌 选择器 text 上下 苹果 bar div
div::-webkit-scrollbar { width: 0; }
::-webkit-scrollbar CSS伪类选择器影响了一个元素的滚动条的样式
::-webkit-scrollbar 仅仅在支持WebKit的浏览器 (例如, 谷歌Chrome, 苹果Safari)可以使用.
你可以使用以下伪元素选择器去修改各式webkit浏览器的滚动条样式:
::-webkit-scrollbar { styles here }
.invisible-scrollbar::-webkit-scrollbar { display: none; } .mostly-customized-scrollbar::-webkit-scrollbar { width: 5px; height: 8px; background-color: #aaa; /* or add it to the track */ } .mostly-customized-scrollbar::-webkit-scrollbar-thumb { background: #000; }
标签:ack ash 谷歌 选择器 text 上下 苹果 bar div
原文地址:https://www.cnblogs.com/ypppt/p/12893629.html