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

后端 未结 3 435
眼角桃花
眼角桃花 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:51

    You cannot apply height to scrollbars as the browser needs to adjust height based on how much there is to scroll on the page (depending on the height of the page).

    You can test it by having content that fits on a single page and by having content that is 3000px in height and see how the scrollbar will lower its size.

提交回复
热议问题