W3C HTML 网页标准教程

HTML5 <legend> 标签

定义和用法

legend 元素为以下元素定义标题(caption):<fieldset>、<figure>、<details>。

实例

<fieldset>
<legend>健康信息:</legend>
<form>
<label>身高:<input type="text" /></label>
<label>体重:<input type="text" /></label>
</form>
</fieldset>

浏览器支持

所有主流浏览器都支持 <legend> 标签。

HTML 4.01 与 HTML 5 之间的差异

在 HTML 4.01 中,<legend> 标签仅应用于 <fieldset> 元素。

在 HTML5 中,<legend> 标签应用于以下元素: <fieldset>、<figure>、<details>。

在 HTML5 中不支持 align 属性。请使用 CSS 替代。