1.vue中修改滚动条样式
css如下:
::-webkit-scrollbar {
width: 1px;
height: 10px;
}
::-webkit-scrollbar-track {
--webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
border-radius: 10px;
}
::-webkit-scrollbar-thumb {
border-radius: 5px;
background: rgb(207, 209, 214);
--webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.5);
}
::-webkit-scrollbar-thumb:window-inactive {
background: rgb(207, 209, 214);
}