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 所示: