如何固定滚动条轨道的高度

问题描述 投票:0回答:1

需要修复滚动条轨道的高度,它应该仅以蓝色开始,背景应该是灰色,你能指导我实现吗?

我尝试在不将高度和背景颜色固定为透明的情况下实现。

实际 预计
enter image description here enter image description here
javascript html css
1个回答
0
投票

您可以使用 ::-webkit-scrollbar :

::-webkit-scrollbar {
  width: 8px;
  height: 10px;
  background-color: hsla(0, 0%, 35%, 0.1);
}
::-webkit-scrollbar-thumb {
  border-radius: 8px;
  background: #007;
}

© www.soinside.com 2019 - 2024. All rights reserved.