Hiding the scroll bar on an HTML page

前端 未结 21 1090
旧巷少年郎
旧巷少年郎 2020-11-22 00:07

Can CSS be used to hide the scroll bar? How would you do this?

21条回答
  •  难免孤独
    2020-11-22 00:53

    I think I found a workaround for you guys if you're still interested. This is my first week, but it worked for me...

    .contentScroller {overflow-y: auto; visibility: hidden;} .content {visibility: visible;}

提交回复
热议问题