HTML <caption> align 屬
實(shí)例
帶有與底部對(duì)齊的 <caption> 元素的表格:
<table border="1">
<caption align="bottom">My savings</caption>
<tr>
<th>Month</th>
<th>Savings</th>
</tr>
<tr>
<td>January</td>
<td>$100</td>
</tr>
</table>
<caption align="bottom">My savings</caption>
<tr>
<th>Month</th>
<th>Savings</th>
</tr>
<tr>
<td>January</td>
<td>$100</td>
</tr>
</table>
嘗試一下 ?
瀏覽器支持
所有主流瀏覽器都支持 align 屬性。
注意:
- Internet Explorer 8 支持 "left", "right", "top", 和 "bottom"值。
- Internet Explorer 9+ 支持 "top", 和 "bottom" 值。
- Firefox 支持 "left", "right", "top", 和 "bottom" 值。
- Opera 支持 "left", "right", "top", 和 "bottom" 值。
- Chrome 支持"top", 和 "bottom" 值。
- Safari 支持 "top", 和 "bottom" 值。
定義和用法
HTML5 不支持 <caption> align 屬性。請(qǐng)使用 CSS 替代。
<caption> 的 align 屬性在 HTML 4.01 中已廢棄。
align 屬性規(guī)定 caption 元素的對(duì)齊方式。
該屬性將 caption 作為塊元素向表格的左邊、右邊、頂部、底部進(jìn)行對(duì)齊。
兼容性注釋
THTML5 不支持 <caption> align 屬性。請(qǐng)使用 CSS 替代。
CSS 語(yǔ)法: <caption style="caption-side:bottom"> or <captionstyle="text-align:left">
在我們的 CSS 教程中,您可以找到更多有關(guān) caption-side 屬性的細(xì)節(jié)。
語(yǔ)法
<caption align="left|right|top|bottom">
屬性值
值 | 描述 |
---|---|
left | 標(biāo)題在表格的左邊。 |
right | 標(biāo)題在表格的右邊。 |
top | 標(biāo)題在表格的上邊。 |
bottom | 標(biāo)題在表格的下邊。 |
更多建議: