以前我的HTML,在“< / p>”之后标记,会有一个换行符,并在准备好下一段后留下一个空行。但是,这已经停止了。
这是我的段落的CSS:
p, a, li, form, input {
font-family: 'Trebuchet MS', 'Lucida Grande', 'Lucida Sans Unicode', 'Lucida Sans', Tahoma, sans-serif;
font-size: 16px;
font-style: normal;
font-variant: normal;
font-weight: 400;
line-height: 20px;
}
答案 0 :(得分:2)
没有&#34;自动&#34; <br>
代码后的<p>
。您所看到的(作为&#34;空白行&#34;)是margin-bottom
值。如果没有&#34;空行&#34;在您的p
标记下,可能几乎没有margin-bottom
值。
这会在<p>
元素下添加一些空间;适应味道。
p {
margin-bottom: 1em;
}