Hiding the scroll bar on an HTML page

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

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

21条回答
  •  Happy的楠姐
    2020-11-22 01:05

    Use the CSS overflow property:

    .noscroll {
      width: 150px;
      height: 150px;
      overflow: auto; /* Or hidden, or visible */
    }
    

    Here are some more examples:

    • overflow-x, overflow-y tests
    • The CSS Overflow Property

提交回复
热议问题