HTML DOM borderSpacing 属性
定义和用法
borderSpacing 属性相邻单元格的边框之间的距离(仅用于“边框分离”模式)。
语法:
Object.style.borderSpacing=length,length
可能的值
值 | 描述 |
---|---|
length length | 使用 px、cm 等单位定义距离。如果定义一个 length 参数,那么定义的是水平和垂直间距。如果定义了两个 length 参数,那么第一个设置水平间距,而第二个设置垂直间距。length 不能为负值。 |
实例
本例设置相邻单元格的边框之间的距离:
<html>
<head>
<script type="text/javascript">
function changeBorderSpacing()
{
document.getElementById('myTable').style.borderSpacing="10px"
}
</script>
</head>
<body>
<table border="1" id="myTable">
<tr>
<td>100</td>
<td>200</td>
</tr>
<tr>
<td>300</td>
<td>400</td>
</tr>
</table>
<input type="button" onclick="changeBorderSpacing()"
value="Change border spacing">
</body>
</html>
TIY
- borderSpacing - 改变相邻单元格的边框之间的距离(请在非 IE 浏览器中查看)