css页脚在两侧切割
我试图在两侧制作一个无限的页脚,尽管它是无限的,但页脚的左侧和右侧都有一个小边距。我没有为我的正文、html 或其他任何内容设置任何边距,因此我不确定可能导致此问题的原因。
这是我的页脚 css:
#footer {
height: 72px;
width: 100%;
background-color: #174466;
margin: 0 auto;
}
这是 html:
<div id="footer">
</div>
有什么想法吗?谢谢!
I am trying to make an infinite footer to the sides, and even though it's infinite, there is a small margin to the left and right of the footer. I don't have any margins set to my body, html, or anything, so I am unsure on what may be causing this.
Here is my footer css:
#footer {
height: 72px;
width: 100%;
background-color: #174466;
margin: 0 auto;
}
And here is the html:
<div id="footer">
</div>
Any ideas? Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这要么意味着您根本没有设置它,要么意味着您将其设置为
0
。我猜你根本没有设置它,所以你需要将 default
margin
/padding
的 default 归零正文
/html
。尝试添加此 CSS,最好在样式表的顶部(为了良好的组织):
That either means you're not setting it at all, or that you're setting it to
0
.I'm going to guess that you're not setting it at all, and so you need to zero out the default
margin
/padding
onbody
/html
.Try adding this CSS, preferably at the top of your style sheet (for good organization):