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.
为什么一旦水色框被填充了如此多的内容(通过单击“填充”)以至于需要向下滚动,红色框会向左移动一点?谢谢!
/* For code, see jsfiddle */
http://jsfiddle.net/XeQSJ/2/
出现的滚动条将所有内容都向左推!!:)
滚动条在需要时才会出现,您可以通过在 CSS 中始终显示滚动条来保持内容不变:
html {overflow-y: scroll;}
像这样
演示
css
html,body{ overflow-y: scroll; }
如果不需要,您使用的浏览器可能不会显示滚动条。
因此,当需要时,您的窗口宽度会减小,并且可能会移动元素。