Home > Article > Web Front-end > How to set line spacing in html paragraphs
<p> Paragraph line spacing can be set by the following methods: Using the CSS property line-height Using the HTML tag <br> Using the line-height attribute in the <p> tag<p> <p>How to set HTML paragraph line spacing <p>In HTML, the method to set paragraph line spacing is as follows: <p>1. Use CSS property <p>Use CSS property
line-height
to set the paragraph line spacing, the unit can be px
, em
, %
or unit less
.
<code class="css">p { line-height: 1.5em; }</code><p>2. Use HTML tags <p>Use HTML tags
<br>
to create new lines, thus increasing paragraph line spacing.
<code class="html"><p> 第一行<br> 第二行<br> 第三行 </p></code><p>3. Use the line spacing attribute <p>In the
<p>
tag, use the line-height
attribute to set it directly Paragraph line spacing, the unit can be px
, em
, %
or unit less
.
<code class="html"><p line-height="1.5em"> 段落内容 </p></code><p>It should be noted that different browsers may have differences in rendering line spacing. If consistent rendering across browsers is required, it is recommended to use the CSS property
line-height
. The above is the detailed content of How to set line spacing in html paragraphs. For more information, please follow other related articles on the PHP Chinese website!