📅  最后修改于: 2023-12-03 15:38:16.680000             🧑  作者: Mango
在 HTML 中添加额外行通常使用 <br>
标签。在 HTML 中,一个换行符仅仅被认为是空白,而不会换行。我们必须使用 <br>
标签来插入新行。以下是如何在 HTML 中添加额外行的不同方法。
要在段落中添加一个额外行,使用 br 标签。你可以放置在你想要添加新行的地方。
<p>This is the first line.<br>
This is the second line.<br>
This is the third line.<br>
This is the fourth line.</p>
这会在每行后面插入一个空行。
你可以在 HTML 列表项中使用 br 标签:
<ul>
<li>Item 1<br>
Description of item 1</li>
<li>Item 2<br>
Description of item 2</li>
<li>Item 3<br>
Description of item 3</li>
</ul>
这将在列表项标题和描述之间插入一个额外空行。
你可以在表格单元格中使用 br 标签:
<table>
<tr>
<th>Header 1</th>
<th>Header 2</th>
</tr>
<tr>
<td>Row 1, Column 1<br>
Row 1, Column 2</td>
<td>Row 2, Column 1<br>
Row 2, Column 2</td>
</tr>
</table>
这将在单元格中的文本之间插入一个额外的空行。
这是在 HTML 中添加额外行的简单方法,可以在各种元素中使用 br 标签。如需更多的 HTML 语法指南,请参阅 W3Schools。