Hide scrollbar in IE

前端 未结 7 1456
猫巷女王i
猫巷女王i 2020-12-24 05:24

In our application for UI we are using JSF or Prime faces for that. We would like to hide the scrollbar for our application, but we are struggling to achieve this in Interne

7条回答
  •  旧巷少年郎
    2020-12-24 06:04

    This CSS works for me both in Chrome and IE 10:

    /* Oculta la scroll-bar pero sigue permitiendo hacer scroll con el mouse */
        body::-webkit-scrollbar { display: none;  }
        html, body { -ms-overflow-style: none; overflow: auto; }
    

提交回复
热议问题