在html中设置文本之间的垂直间距

时间:2011-02-28 12:17:53

标签: html css

我在每一行都有一个接一个的标题。现在我想确保标题之间的垂直空间是标题1和标题2之间的x像素,标题3和标题4之间的y像素。我如何确保它?

3 个答案:

答案 0 :(得分:2)

将一些margin-bottom添加到标题1和3。

答案 1 :(得分:1)

<强> HTML:

<h1>Heading One</h1>
<h2>Heading Two</h2>
<h3>Heading Three</h3>
<h4>Heading Four</h4>

<强>的CSS:

h1 {
   margin-bottom: Xpx;
}

h3 {
   margin-bottom: Ypx
}

答案 2 :(得分:-1)

使用样式,

1)对于第一个标题,如

<h1 style="padding-top:10px;padding-bottom:10px;">First Header</h1>
<h1 style="padding-top:10px;padding-bottom:10px;">Second Header</h1>