目录

style captionSide 属性

示例

将表格标题移至表格底部:

document.getElementById("myCap").style.captionSide = "bottom";
亲自试一试 »

描述

CaptionSide 属性设置或返回表格标题的位置。


浏览器支持

Property
captionSide Yes 9.0 Yes Yes Yes

语法

返回标题Side 属性:

object.style.captionSide

设置标题Side属性:

object.style.captionSide = "top|bottom|initial|inherit"

属性值

Value Description
top Default. Positions the table caption above the table
bottom Positions the table caption below the table
initial Sets this property to its default value. Read about initial
inherit Inherits this property from its parent element. Read about inherit

技术细节

默认值: 顶部
返回值: 一个字符串,表示表格标题的位置
CSS版本 CSS2

更多示例

示例

返回表格标题:

alert(document.getElementById("myCap").style.captionSide);
亲自试一试 »

相关页面

CSS教程:CSS表

CSS 参考:标题端属性