Firefox 中 HTML 元素的下边距
在 Firefox(版本 97.0.1)中, 元素没有下边距:
html {
margin: 1em;
background: green;
}
body {
margin: 0;
height: 1200px;
background: tan;
}
这是一个错误吗?
The <html>
element doesn't have a bottom margin in Firefox (version 97.0.1):
html {
margin: 1em;
background: green;
}
body {
margin: 0;
height: 1200px;
background: tan;
}
Is it a bug?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在这里,您应该在 body 中添加边距,并从 html 中删除边距。
Here, you should add the margin in the body and remove the margin from html.
由于主体的高度大于屏幕尺寸,因此您的边距底部将低于视图
Since the height of the body is more then screen size your margin bottom is going below view