我如何设法更改此代码创建的自定义滚动条的长度,我正在尝试制作一个紧凑的博客,所以请帮助:)
div.custom-scroll {
overflow: auto;
height: 210px;
}
.custom-scroll::-webkit-scrollbar {
width: 10px;
}
.custom-scroll::-webkit-scrollbar-track {
-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
-webkit-border-radius: 30px;
border-radius: 10px;
}
.custom-scroll::-webkit-scrollbar-thumb {
-webkit-border-radius: 10px;
border-radius: 10px;
-webkit-box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.5);
}
.custom-scroll::-webkit-scrollbar-thumb:hover {
background-color:#028eff;
}
答案 0 :(得分:0)
猜测您想要更改自定义滚动div中的height
值,这是与您的问题相关的唯一值。