Disable browsers vertical and horizontal scrollbars

后端 未结 11 2381
一生所求
一生所求 2020-11-28 02:41

Is it possible to disable the browsers vertical and horizontal scrollbars using jQuery or javascript?

11条回答
  •  爱一瞬间的悲伤
    2020-11-28 03:21

    In modern versions of IE (IE10 and above), scrollbars can be hidden using the -ms-overflow-style property.

    html {
         -ms-overflow-style: none;
    }
    

    In Chrome, scrollbars can be styled:

    ::-webkit-scrollbar {
        display: none;
    }
    

    This is very useful if you want to use the 'default' body scrolling in a web application, which is considerably faster than overflow-y: scroll.

提交回复
热议问题