gpt4 book ai didi

html - 为什么这个 div 在底部添加空白区域?

转载 作者:太空宇宙 更新时间:2023-11-03 21:52:17 35 4
gpt4 key购买 nike

我有以下代码:

<div class="line">
<div class="content">Hello, How are you?</div>

CSS:

 .line {
border-bottom: 1px solid tomato;
margin: 30px auto;
width: 852px;
overflow: hidden;
}

.content {
color: #000;
font-size: 15;
}

.line 类在行和它下面的内容之间添加空间。我不确定为什么。我该怎么做才能解决这个问题?

最佳答案

margin: 30px auto; 计算为

margin: 30px auto 30px auto;

30px 位于顶部,30px 位于底部。因此间距。

如果你不想要空间,你可以这样做

margin: 30px auto 0;

或者

margin: 30px auto 0 auto;

关于html - 为什么这个 div 在底部添加空白区域?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16596843/

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