Hiding the scroll bar on an HTML page

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

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

21条回答
  •  别那么骄傲
    2020-11-22 00:42

    This works for me with simple CSS properties:

    .container {
        -ms-overflow-style: none;  // Internet Explorer 10+
        scrollbar-width: none;  // Firefox
    }
    .container::-webkit-scrollbar { 
        display: none;  // Safari and Chrome
    }
    

    For older versions of Firefox, use: overflow: -moz-scrollbars-none;

提交回复
热议问题