<p> </p>标记后没有自动换行符?

时间:2015-11-04 23:38:56

标签: html css

以前我的HTML,在“&lt; / p&gt;”之后标记,会有一个换行符,并在准备好下一段后留下一个空行。但是,这已经停止了。

这是我的段落的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;
}

1 个答案:

答案 0 :(得分:2)

没有&#34;自动&#34; <br>代码后的<p>。您所看到的(作为&#34;空白行&#34;)是margin-bottom值。如果没有&#34;空行&#34;在您的p标记下,可能几乎没有margin-bottom值。

这会在<p>元素下添加一些空间;适应味道。

p {
  margin-bottom: 1em;
}