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.
我一直在尝试删除 HTML/CSS 页面中额外的水平空间。
知道为什么会这样。
谢谢
添加一个css属性:(用你想要的任何元素替换“html”)
html { overflow: hidden; }
如果您想更具体(不确定它是否可以在任何地方使用,但在 Firefox 中):
html { overflow-x: hidden; }