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:
#footer { height: 72px; width: 100%; background-color: #174466; margin: 0 auto; }
这是html:
<div id="footer"> </div>
有任何想法吗?谢谢!
我没有为我的正文设置任何边距,html
这要么意味着你根本没有设置它,要么你将它设置为0.
0
我猜你根本没有设置它,所以你需要将默认 margin/ paddingon body/归零html。
margin
padding
body
html
尝试添加这个 CSS,最好是在你的样式表的顶部(为了更好的组织):
html, body { margin: 0; padding: 0 }