twitter bootstrap - How to hide the scrollbar in IE10? -


the problem scrollbar shows when move mouse inside body after link bootstrap style.

at beginning, scrollbar hidden. working fine. when hover mouse in body area , toggle mouse wheel, scrollbar shows up. have set overflow hidden. issue still here.

the code snippet below:

<!doctype html> <html> <head>     <link href="~/content/bootstrap.min.css" rel="stylesheet" />     <style>         html, body {             overflow: hidden;         }     </style> </head> <body> </body> </html> 

you can use vendor specific -ms-overflow-style-property control scrolling/scrollbar behavior on ie

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

note applies on elements overflow property set , works on windows 8 , up.

-ms-overflow-style property on msdn


Comments

Popular posts from this blog

android - MPAndroidChart - How to add Annotations or images to the chart -

javascript - Add class to another page attribute using URL id - Jquery -

firefox - Where is 'webgl.osmesalib' parameter? -