HTML DOM borderCollapse 属性

HTML DOM Style 对象参考手册

定义和用法

borderCollapse 属性设置表格的边框是否被合并为一个单一的边框,还是象在标准的 HTML 中那样分开显示。

语法:

Object.style.borderCollapse=collapse|separate

可能的值

描述
separate 边框会被分开。
collapse 默认。如果可能,边框会被合并为一个单一的边框。

实例

下面的例子合并表格边框:

<html>
<head>
<script type="text/javascript">
function setBorderCollapse()
{
document.getElementById('myTable').style.borderCollapse="collapse"
}
</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>
<br />
<input type="button" onclick="setBorderCollapse()"
value="Collapse border">

</body>
</html>

HTML DOM Style 对象参考手册