标签:overflow flow width number scrollbar rgba sha x11 ado
/* 定义滚动条样式 */
::-webkit-scrollbar {
width: 6px;
height: 6px;
}
/*定义滚动条轨道 内阴影+圆角*/
::-webkit-scrollbar-track {
box-shadow: inset 0 0 0px rgba(240, 240, 240, .5);
border-radius: 10px;
}
/*定义滑块 内阴影+圆角*/
::-webkit-scrollbar-thumb {
border-radius: 10px;
box-shadow: inset 0 0 0px rgba(240, 240, 240, .5);
}
标签:overflow flow width number scrollbar rgba sha x11 ado
原文地址:https://www.cnblogs.com/lee1-w/p/11410426.html