Style borderCollapse 属性
Style 对象的 borderCollapse 属性设置或返回表格的边框是否被折叠为一个单一的边框
语法
返回 borderCollapse 属性
object.style.borderCollapse
设置 borderCollapse 属性
object.style.borderCollapse="separate|collapse|initial|inherit"
值说明
值 | 描述 |
---|---|
separate | 默认。为所有的表格单元格元素绘制单独的边框,边框不会被合并为一个单一的边框 |
collapse | 表格单元格元素之间不会绘制边框,边框会被合并为一个单一的边框 |
initial | 设置该属性为它的默认值。可以阅读 initial |
inherit | 从父元素继承该属性。可以阅读 inherit |
浏览器支持
所有主要浏览器都支持 borderCollapse 属性
范例
折叠表格的边框
document.getElementById("myTable").style.borderCollapse="collapse";
范例 2
返回 borderCollapse 属性
alert(document.getElementById("myTable").style.borderCollapse);
相关知识
CSS 基础教程:CSS Table(表格)
CSS 参考手册:border-collapse 属性