gpt4 book ai didi

html - 如何摆脱包装内多余的空白

转载 作者:太空宇宙 更新时间:2023-11-04 04:52:59 25 4
gpt4 key购买 nike

Example

正如您在示例图片中看到的那样,“新闻”标题上方有某种类型的空白区域(填充?边距?)摆脱空白。谢谢!

HTML:

<div id="news_wrapper">
<div id="newsheader">
<p>News</p>
</div>
<div class="news">
<p>"News Post 1"</p>
</div>
<div class="news">
<p>"News Post 2"</p>
</div>
<div class="news">
<p>"News Post 3"</p>
</div>
<div class="news">
<p>"News Post 4"</p>
</div>
</div>

CSS:

#news_wrapper {
border: 1px solid black;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
border-radius: 2px;
width: 650px;
height: auto;
margin: 6px;
}

#newsheader {
background-color: Black;
color: white;
width: auto;
margin: 0px;
height: 30px;
text-align: center;
font: 'Helvetica', sans-serif;
text-transform: bold;
}

.news {
display: block;
margin: auto;
text-align: center;
border: 1px solid black;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
border-radius: 2px;
margin: 4px;
}

最佳答案

将此添加到您的 CSS 中

#newsheader p{
margin:0;
}

关于html - 如何摆脱包装内多余的空白,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13041090/

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