相关文章推荐
一直单身的匕首  ·  backdrop-filter - ...·  1 周前    · 
沉稳的键盘  ·  <div ...·  1 周前    · 
仗义的登山鞋  ·  android ...·  3 周前    · 
玩手机的鸡蛋面  ·  Linux — ...·  9 月前    · 
憨厚的饭盒  ·  idea换行符转换-掘金·  1 年前    · 

#table_show_content::-webkit-scrollbar{
width: 0px;
background: gray;
}

设置滚动条粗细:

#table_show_content::-webkit-scrollbar{
width: 2px;
background: gray;
}

::-webkit-scrollbar-track-piece { //滚动条凹槽的颜色,还可以设置边框属性

}
::-webkit-scrollbar {//滚动条的宽度
width:9px;
height:9px;
}
::-webkit-scrollbar-thumb {//滚动条的设置

background-clip:padding-box;
min-height:28px;
border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {

}