当前位置: 代码迷 >> 综合 >> HTML legend 标签
  详细解决方案

HTML legend 标签

热度:99   发布时间:2023-12-25 22:02:50.0

实例

组合表单中的相关元素:

<form>
<fieldset>    
<legend>health information</legend>
height: <input type="text" />
weight: <input type="text" />
</fieldset>
</form>


浏览器支持

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

定义和用法

legend 元素为 fieldset 元素定义标题(caption)。

HTML 与 XHTML 之间的差异

在 HTML 4.01 中,align 属性不被赞成使用。

在 XHTML 1.0 Strict DTD 中,align 属性不被支持。

可选的属性

DTD 指示此属性允许在哪种 DTD 中使用。S=Strict, T=Transitional, F=Frameset.

属性 描述 DTD
align
  • top

  • bottom

  • left

  • right

不赞成使用。请使用样式代替。

为 fieldset 中的标题定义对齐方式。

TF

全局属性

<fieldset> 标签支持 HTML 中的全局属性。

事件属性

<fieldset> 标签支持 HTML 中的事件属性。

  相关解决方案