What css style should I use to disabel scroll in Internet Explorer. I already tried:
body, html { overflow-x: hidden; overflow-y: auto; } But it doesn't work
Try This trick as I apply on my code once
<body scroll="no"> You could also try setting the overflow property of the html page in CSS like so.
html, body { overflow: hidden; } 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; }
overflow-x: hidden;else foe disabling vertical scroll useoverflow-y: hidden;