去掉滾動條:
#table_show_content::-webkit-scrollbar{
width: 0px;
background: gray;
}
設置滾動條粗細:
#table_show_content::-webkit-scrollbar{
width: 2px;
background: gray;
}
::-webkit-scrollbar-track-piece { //滾動條凹槽的顏色,還可以設置邊框屬性
background-color:transparent;
}
::-webkit-scrollbar {//滾動條的寬度
width:9px;
height:9px;
}
::-webkit-scrollbar-thumb {//滾動條的設置
background-color:#DFE6EA;
background-clip:padding-box;
min-height:28px;
border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
background-color:#DFE6EA;
}