cellspacing

cellspacing 屬性規定單元之間的空間,以像素計。

定義和用法,屬性值,

定義和用法

cellSpacing 屬性可設定或返回在表格中的單元格之間的空白量(表格中各個單元格之間的距離)(以像素為單位)。
語法
tableObject.cellSpacing=pixels實例
下面的例子更改了表格的 cellSpacing:
<html>
<head>
<script type="text/javascript">
function spacing()
{
document.getElementById('myTable').cellSpacing="15"
}
</script>
</head>
<body>
<table id="myTable" border="1">
<tr>
<td>100</td>
<td>200</td>
</tr>
<tr>
<td>300</td>
<td>400</td>
</tr>
</table>
<br />
<input type="button" onclick="spacing()" value="Change Cellspacing">
</body>
</html>

屬性值

在 HTML 中,cellSpacing 屬性具有如下的屬性值:
描述
規定單元之間的空間。

相關詞條

熱門詞條

聯絡我們