标签:div rom 背景 web html 其他 rac 方式 www
/* 滚动轴样式 */
// 滚动轴整体,主要设置宽度
::-webkit-scrollbar {
width : 10px;
height: 10px;
}
// 滚动轴的背景区域
::-webkit-scrollbar-track {
box-shadow : inset 0 0 5px rgba(0, 0, 0, 0.1);
border-radius: 0px;
background : rgba(0, 0, 0, 0.1);
}
// 滚动轴
::-webkit-scrollbar-thumb {
border-radius: 5px;
box-shadow : inset 0 0 5px rgba(0, 0, 0, 0.1);
background : rgba(0, 0, 0, 0.1);
}
// 滚动轴浮动样式
::-webkit-scrollbar-thumb:hover {
border-radius: 5px;
box-shadow : inset 0 0 5px rgba(0, 0, 0, 0.1);
background : rgba(189, 118, 118, 0.3);
}
推荐一个滚动轴样式设置的文章
标签:div rom 背景 web html 其他 rac 方式 www
原文地址:https://www.cnblogs.com/XHappyness/p/11910679.html