2024年09月29日 建站教程
问题描述:页面因内容太多出现一些滚动条,但是系统自动的滚动条太难看,下面web建站小编给大家介绍一下::-webkit-scrollbar的作用。
/*滚动条*/
::-webkit-scrollbar-track-piece {
background-color: #fff;
}
::-webkit-scrollbar {
width: 13px;
height: 13px;
}
::-webkit-scrollbar-thumb {
background-color: #aaa;
background-clip: padding-box;
min-height: 28px;
}
::-webkit-scrollbar-thumb:hover {
background-color: #aaa;
}
//如果不想显示滚动条
.sidebar::-webkit-scrollbar {
width: 0;
}
本文链接:http://so.lmcjl.com/news/14206/