doyoe / css-handbook

CSS参考手册
http://css.doyoe.com
Apache License 2.0
1.54k stars 313 forks source link

::-webkit-scrollbar #126

Open Gutwql opened 7 years ago

Gutwql commented 7 years ago
         /*滚动条兼容谷歌css设置方法*/

.scroll { border-bottom: rgb(64,64,64) solid 1px; border-right: rgb(64,64,64) solid 1px; margin: 0; width: 23.4em; height: 8em; overflow: auto; overflow-x: hidden; } .scroll::-webkit-scrollbar{ width: .8em; height: 5.5em; border-radius: 4px; } .scroll::-webkit-scrollbar-track{ background-color: #241e18; } .scroll::-webkit-scrollbar-button{ display: none; } .scroll::-webkit-scrollbar-thumb{ background-color: #404040; border-radius: 8px; } .scroll::-webkit-scrollbar-thumb:hover{ background-color: #0e0e0e; }