例
與底部對齊的表<caption>元素:
<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屬性定義標題元素的對齊方式。
此屬性應對齊字幕作為塊元件的左邊,右邊,上方或下方的表。
瀏覽器支持
屬性 | |||||
---|---|---|---|---|---|
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"值
兼容性說明
在<caption> align屬性不是HTML5的支持。 使用CSS來代替。
CSS語法: <caption style="caption-side:bottom"> or <caption style="text-align:left">
在我們的CSS教程中,你可以找到有關的更多詳細信息caption-side屬性和text-align屬性。
句法
<caption align="left|right|top|bottom">
屬性值
值 | 描述 |
---|---|
left | 標題是在所述表的左側 |
right | 標題是在所述表右側 |
top | 標題是在所述表的頂部(這是默認值) |
bottom | 標題是在所述表的底部 |