.table-content{
list-style: none;
padding: 0;
margin-top: 0;
height: 754px;
overflow-y:auto;
&::-webkit-scrollbar { //定义滚动条的整体样式
width: 10px;
height: 10px; // 滚动条的宽高
background-color: #054663 //滚动条的颜色
}
&::-webkit-scrollbar-thumb { // 定义滚动条的样式
border-radius: 10px;
-webkit-box-shadow: inset 0 0 6px #00a8ff;
background-color: #00C9FF;
}
&::-webkit-scrollbar-track { // 滚动条轨道的样式
border-radius: 10px;
// background: unset;
background-color: red;
}
}
设置滚动条的样式
于 2022-03-31 18:01:07 首次发布