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.
是否可以使用 css 来制作<html>和/或<body>元素来填充浏览器视口的 100% 宽度,无论它放大多少?
<html>
<body>
目前,我将 html 和 body 设置为 100% - 但经过一定程度的放大后,它停止了,并且我的标题等被丑陋的切断了。
如果我将它设置为 5000px 它可以工作,但显然这也会影响非缩放。
因此缩放似乎会覆盖 100% 宽度,因为它会在某个点停止,我想克服这个问题。
没有代码示例很难说,但请确保您没有任何具有固定宽度、填充、边距、边框的元素 - 例如 divwidth: 500px;肯定会向您的浏览器添加滚动并将祖先标签推出浏览器视口边界。
width: 500px;