Can't apply width and height to -webkit-scrollbar using CSS

后端 未结 3 440
眼角桃花
眼角桃花 2021-02-05 11:58
::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

::-webkit-scrollbar-thumb {
    background-color:#808080;
}

Why do the width and height attri

3条回答
  •  旧巷少年郎
    2021-02-05 12:41

    This works, except for the height

    Example: http://jsfiddle.net/jasongennaro/gBrNf/

    Fairly certain that's because the browser determines the height of the scrollbar based on the height of the content. (More content equals shorter scrollbar... it's a visual cue I am not sure you can override.)

提交回复
热议问题