How to make scrollbar overlapping page content

前端 未结 2 948
旧巷少年郎
旧巷少年郎 2021-01-12 00:29

I want to make scrollbar that overlaps the page. I wonder if there is a way to do it with pure CSS. I read an article about styling scrollbars with CSS (https://css-tricks.c

2条回答
  •  走了就别回头了
    2021-01-12 01:27

    You can try changing the background of the Scrollbar to transparent-

    ::-webkit-scrollbar-track {background: transparent}
    

提交回复
热议问题