gpt4 book ai didi

html - CSS不需要的边距

转载 作者:行者123 更新时间:2023-11-28 13:20:54 26 4
gpt4 key购买 nike

我正在制作一个相当简单的网页,我有点脏,所以我可能犯了一个非常明显的错误,但请坚持我的想法。我的文档的所有边上的边距都非常薄(可能是 5-10 像素)。我包括我的代码的缩写版本。任何人都可以告诉我为什么我得到它以及如何摆脱它。

html:

<body>
<div id="wrap">
<div id="video">
</div>
<div id="para">
<p>Hello, I'm ...</p>
</div>
<div id="footer">
<ul id="social">
<li></li>
<li></li>
<li></li>
<li></li>
</ul>
</div>
</div>
</body>

CSS:

#wrap { background: url(Andres/images/background-bg.png);  margin: 0 auto;
}

#para p { padding: 20px; }

#footer { background:url(Andres/images/footer.png); height: 80px;}

#footer #social li { float: left; padding: 10px; list-style: none; }

最佳答案

它可能是 <body> 上的默认 margin 元素 - 大多数浏览器在所有边上都包含 8px,只需添加:

body {
margin: 0;
}

关于html - CSS不需要的边距,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15892068/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com