HTML <legend> align 屬性
實(shí)例
對(duì)標(biāo)題進(jìn)行右對(duì)齊:
<form>
<fieldset>
<legend align="right">個(gè)人信息:</legend>
姓名: <input type="text" size="30"><br>
郵箱: <input type="text" size="30"><br>
生日: <input type="text" size="10">
</fieldset>
</form>
<fieldset>
<legend align="right">個(gè)人信息:</legend>
姓名: <input type="text" size="30"><br>
郵箱: <input type="text" size="30"><br>
生日: <input type="text" size="10">
</fieldset>
</form>
嘗試一下 ?
瀏覽器支持
除了 Opera,其他主流瀏覽器都支持 align 屬性的 "left" 和 "right" 值。幾乎沒(méi)有主流瀏覽器支持 "bottom" 值。
定義和用法
HTML5 不支持 <legend> align 屬性。請(qǐng)使用 CSS 代替。
在 HTML 4.01 中,<legend> 的 align 屬性已廢棄。
align 屬性規(guī)定 fieldset 中標(biāo)題的對(duì)齊方式。
語(yǔ)法
<legend align="left|right|top|bottom">
屬性值
值 | 描述 |
---|---|
left | 對(duì)標(biāo)題進(jìn)行左對(duì)齊(默認(rèn))。 |
right | 對(duì)標(biāo)題進(jìn)行右對(duì)齊。 |
top | 對(duì)標(biāo)題進(jìn)行上對(duì)齊。 |
bottom | 對(duì)標(biāo)題進(jìn)行下對(duì)齊。 |
HTML <legend> 標(biāo)簽
更多建議: