Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
由于某种原因,此页面内#mainView div 的左侧有一个滚动条。我真的不明白为什么。这个问题似乎发生在几乎所有的浏览器中。一旦触发右侧的滚动条,左侧的滚动条就会消失。
网站
在#mainView加载内容之前,它width是 null 并且它的overflow属性设置为scroll。div因此,在等待内容加载时,您有一个 20px 宽的单独滚动条。
#mainView
width
overflow
scroll
div
您可以选择宽度,也可以#mainView尝试overflow: auto。
overflow: auto
简单来说,当您将 div 设置为 css 属性值以溢出浏览器时,默认情况下会显示滚动窗格。但是如果您仍然希望在填充 div 时具有溢出内容的相同效果,请使用 css 属性溢出:汽车