最新的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>标签