How to make scrollbar overlapping page content

前端 未结 2 949
旧巷少年郎
旧巷少年郎 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:12

    I have this same requirement in my project.

    Here is the solution:

    overflow: overlay
    

    Hope it helps

    0 讨论(0)
  • 2021-01-12 01:27

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

    ::-webkit-scrollbar-track {background: transparent}
    
    0 讨论(0)
提交回复
热议问题