如果你去任何网站的内容,导致在ie10(桌面),如
http://www.buildwindows.com/垂直滚动条,你会注意到滚动条只有当你悬停在窗口上方才会出现。
有没有反正强制滚动条总是显示?我担心,它不那么明显,页面上有更多的内容。
谢谢
解决方法
有一个自定义供应商前缀的CSS属性设置:
html { -ms-overflow-style: scrollbar; }
其他选项包括auto,none,scrollbar和-ms-autohiding-scrollbar。后者导致您遇到的行为。
从MSDN documentation摘录,特别是上面提到的滚动条值:
Indicates the element displays a classic scrollbar-type control when its content overflows.
Unlike
-ms-autohiding-scrollbar
,scrollbars on elements with the-ms-overflow-style
property set toscrollbar
always appear on the screen and do not fade out when the element is inactive.