HTML DOM captionSide 属性
定义和用法
captionSide 属性设置表格标题的位置。
语法:
Object.style.captionSide=top|bottom|left|right
可能的值
值 | 描述 |
---|---|
top | 默认。把表格标题定位在表格之上。 |
bottom | 把表格标题定位在表格之下。 |
left | 把表格标题定位在表格的左边。 |
right | 把表格标题定位在表格的右边。 |
实例
本例移动表格标题:
<html>
<head>
<style type="text/css">
caption
{
caption-side:bottom;
}
</style>
<script type="text/javascript">
function moveCaption()
{
document.getElementById('myTable').style.captionSide="right"
}
</script>
</head>
<body>
<table border="1" id="myTable">
<caption>This is a caption</caption>
<tr>
<td>100</td>
<td>200</td>
</tr>
<tr>
<td>300</td>
<td>400</td>
</tr>
</table>
<br />
<input type="button" onclick="moveCaption()"
value="Move table caption">
</body>
</html>
TIY
- captionSide - 对表格标题进行定位(请在非 IE 浏览器中查看)