📅  最后修改于: 2023-12-03 15:01:14.997000             🧑  作者: Mango
在 HTML 中,<legend> 元素用于为表单的标题定义标题,可以通过设置对齐属性来控制标题的对齐方式。对齐属性可以为左对齐、居中对齐或右对齐。
使用 <legend> 元素时,可以为其设置对齐属性。示例代码如下:
<fieldset>
<legend align="left">左对齐标题</legend>
<!-- 表单内容 -->
</fieldset>
<fieldset>
<legend align="center">居中对齐标题</legend>
<!-- 表单内容 -->
</fieldset>
<fieldset>
<legend align="right">右对齐标题</legend>
<!-- 表单内容 -->
</fieldset>
在上面的代码中,<legend> 元素分别被设置为左对齐、居中对齐和右对齐。
使用 <legend> 元素时,可以设置对齐属性来控制标题的对齐方式。建议使用 CSS 样式代替对齐属性进行控制。