设计给的图纵向滚动条的高度只有20px,但是无论如何设置都不管用。宽度可以设置,高度不管用。
.scrollbar-y-auto {
overflow-y: auto;
&::-webkit-scrollbar {
height: 20px !important;
}
}
.scrollbar-y-auto::-webkit-scrollbar-thumb {
background-color: red; /* 设置滚动条的颜色 */
height: 4px !important;
min-height: 4px !important;
max-height: 10px !important;
}
如果不太考虑老浏览器的兼容性的话,可以使用 scrollbar-width: thin 这个新的CSS属性,但是不能设置指定高度,只能是提供的3个可选值里面选。
"scrollbar-width" | Can I use
如果想要继续用
-webkit-scrollbar
相关的伪类选择器的话。添加一个background-color
就行了。其实兼容性也有问题的,火狐浏览器这种非

Blink
和WebKit
内核的浏览器是不支持的