对谷歌浏览器滚动条进行样式设置

来源:互联网 发布:姜大声 知乎 编辑:程序博客网 时间:2024/06/05 10:37
<!DOCTYPE html><html><head><meta charset="utf-8"><title>自定义滚动条样式</title><style>.all{background:#f00;opacity:0.5;width:5000px;height:5000px;}::-webkit-scrollbar {   width: 0.2em;}::-webkit-scrollbar:horizontal //横向滚动条样式{   height: 0.5em;}/* Track */::-webkit-scrollbar-track {   -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);    -webkit-border-radius: 10px;   border-radius: 10px;}/* Handle */::-webkit-scrollbar-thumb {   -webkit-border-radius: 10px;   border-radius: 10px;   background: rgba(255,0,0,0.8);   -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.5); }::-webkit-scrollbar-thumb:window-inactive {background: rgba(169,169,169,0.4); }</style></head><body><div class="all"></div></body></html>


效果图:


0 0