css页脚在两侧切割

发布于 2024-11-06 21:23:31 字数 337 浏览 3 评论 0原文

我试图在两侧制作一个无限的页脚,尽管它是无限的,但页脚的左侧和右侧都有一个小边距。我没有为我的正文、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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

花间憩 2024-11-13 21:23:31

我没有设置任何边距
正文,html

这要么意味着您根本没有设置它,要么意味着您将其设置为0

我猜你根本没有设置它,所以你需要将 default margin/paddingdefault 归零正文/html

尝试添加此 CSS,最好在样式表的顶部(为了良好的组织):

html, body {
    margin: 0;
    padding: 0
}

I don't have any margins set to my
body, html

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 on body/html.

Try adding this CSS, preferably at the top of your style sheet (for good organization):

html, body {
    margin: 0;
    padding: 0
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文