最新的Web開發教程
 

HTML <caption> align Attribute

<HTML <caption>標籤

與底部對齊的表<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實例:定位表格標題。

在我們的CSS教程中,你可以找到有關的更多詳細信息caption-side屬性和text-align屬性。


句法

<caption align="left|right|top|bottom">

屬性值

描述
left 標題是在所述表的左側
right 標題是在所述表右側
top 標題是在所述表的頂部(這是默認值)
bottom 標題是在所述表的底部

<HTML <caption>標籤