gpt4 book ai didi

css - -moz-scrollbars-vertical 等效于 Chrome/Opera/Safari?

转载 作者:技术小花猫 更新时间:2023-10-29 12:00:03 26 4
gpt4 key购买 nike

IE6、IE7、IE8默认为页面显示垂直滚动条,即使页面不可滚动。 Chrome 和 Firefox 不会这样做(我假设 Opera 和 Safari 也不会)。您可以使用 CSS 在 FireFox 中实现相同的行为:

body { overflow: -moz-scrollbars-vertical; }

有没有办法在其他三个浏览器中强制显示滚动条?或者更好的是,一种标准的方法?

最佳答案

更新

您可能(另外)需要包含 -ms-overflow-y 和/或 -moz-scrollbars-vertical,如 this other StackOverflow post 中所述:

html {
overflow: -moz-scrollbars-vertical; /* For FF */
-ms-overflow-y: scroll; /* For IE */
overflow-y: scroll; /* For others & old IE */
}

原创

html { overflow-y: scroll; }

参见 "overflow-y" at W3Schools

测试和验证(成功):

  • FF 7
  • Chrome 15
  • IE 5+6+7+8+9+10(平台预览)w/IETester
  • 歌剧 11.52
  • Safari/Win 5.1.1

完整示例

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<style type="text/css">
html { overflow-y: scroll; }
</style>
</head>
<body>
Test content
</body>
</html>

关于css - -moz-scrollbars-vertical 等效于 Chrome/Opera/Safari?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1800670/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com