Hiding the scroll bar on an HTML page

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

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

21条回答
  •  情深已故
    2020-11-22 00:59

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

    If you wish to remove vertical (and horizontal) scrollbars from a browser viewport, add:

    style="position: fixed;"
    

    to the element.


    Javascript:

    document.body.style.position = 'fixed';
    

    CSS:

    body {
      position: fixed;
    }
    

提交回复
热议问题