我的滚动条有问题。我想从顶部减少我的滚动条的一些高度,但是当我这样做时也会从底部减少。我该怎么做才能降低滚动条的顶部高度。
任何帮助都将不胜感激。
::-webkit-scrollbar
{
cursor: move;
}
::-webkit-scrollbar-button:start:decrement,
::-webkit-scrollbar-button:end:increment
{
height: 0px;
}
::-webkit-scrollbar-button:horizontal:start:decrement,
::-webkit-scrollbar-button:horizontal:end:increment
{
height: 0px; // when i change here both top and bottom height decreases.
overflow: hidden;
}
::-webkit-scrollbar-track-piece
{
background-color: #1D1D1D;
cursor: move;
}
::-webkit-scrollbar-thumb:vertical,
::-webkit-scrollbar-thumb:horizontal
{
border: 1px solid grey;
-webkit-border-radius: 6px;
}
答案 0 :(得分:0)
我之前从未尝试过修改滚动条,但您所描述的是保证金问题,而不是高度问题。使用margin-top
将滚动条“推”离顶部。