当前位置: 首页 > 文档资料 > HTML 宝典 >

2.2.3 hr元素

优质
小牛编辑
130浏览
2023-12-01

hr元素用于创建一个水平分隔线(horizontal rule),可以在视觉上将文档分隔成不同的部分。hr 标签是一个单标签,需要使用“/”来正确地关闭,其格式为 <hr />。如:

<section>
<h1>Food</h1>
<p>All food at the project is rationed:</p>
<dl>
<dt>Potatoes</dt>
<dd>Two per day</dd>
<dt>Soup</dt>
<dd>One bowl per day</dd>
</dl>
<hr />
<p>Cooking is done by the chefs on a set rotation.</p>
</section>

运行结果如图 2‑9 所示:

hr元素
图2-9 hr元素