html - Disable -ms-overflow-style "auto-hide" without disabling the bar completely -


in ie11, website bodies scrollbar keeps disappearing , re-appearing whenever cursor goes page , out. read ie-exclusive '-ms-overflow-style' css style problem. set following 2 css properties onto body element:

body {     -ms-overflow-style: none !important;     overflow-y: auto; } 

i still want scrollbar appear when there overflowing content vary depending on browsers window height. don't want disappear , reappear in ie "auto-hide" feature. basically, want behave same ff , chrome.

problem is, seems once set '-ms-overflow-style' 'none', ie11 ignores 'overflow-y' also. frustrating.

if grammar bad, sorry, i'm tired.

thanks in advance!

you can use:

-ms-overflow-style: scrollbar 

instead of none. source: http://msdn.microsoft.com/en-us/library/windows/apps/hh441298.aspx


Comments

Popular posts from this blog

c++ - QTextObjectInterface with Qml TextEdit (QQuickTextEdit) -

javascript - angular ng-required radio button not toggling required off in firefox 33, OK in chrome -

xcode - Swift Playground - Files are not readable -