Style borderCollapse 属性
折叠表格的边框:
<table id="myTable" border="1">
<tr>
<th>月份</th>
<th>储蓄</th>
</tr>
<tr>
<td>一月</td>
<td>$100</td>
</tr>
<tr>
<td>二月</td>
<td>$150</td>
</tr>
</table>
<br>
<button type="button" onclick="myFunction()">折叠边框</button>
<script>
function myFunction() {
document.getElementById("myTable").style.borderCollapse = "collapse";
}
</script>
定义和用法
borderCollapse 属性设置或返回表格的边框是否被折叠为一个单一的边框。
浏览器支持
所有主流浏览器都支持 borderCollapse 属性。
语法
返回 borderCollapse 属性:
object.style.borderCollapse
设置 borderCollapse 属性:
object.style.borderCollapse = "separate|collapse|initial|inherit"
属性值
值 | 描述 |
---|---|
separate | 为所有的表格单元格元素绘制单独的边框,边框不会被合并为一个单一的边框。这是默认的。 |
collapse | 表格单元格元素之间不会绘制边框,边框会被合并为一个单一的边框。 |
initial | 设置该属性为它的默认值。请参阅 initial。 |
inherit | 从父元素继承该属性。请参阅 inherit。 |
技术细节
默认值: | separate |
---|---|
返回值: | 字符串,表示表格的边框。 |
CSS 版本 | CSS2 |
更多实例
返回 borderCollapse 属性:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>蜜蜂教程(mifengjc.com)</title>
<style>
td,
th {
border: 1px solid black;
}
</style>
</head>
<body>
<table id="myTable" style="border-collapse:collapse;">
<tr>
<th>月份</th>
<th>储蓄</th>
</tr>
<tr>
<td>一月</td>
<td>$100</td>
</tr>
<tr>
<td>二月</td>
<td>$150</td>
</tr>
</table>
<br>
<button type="button" onclick="myFunction()">返回 border-collapse</button>
<script>
function myFunction() {
alert(document.getElementById("myTable").style.borderCollapse);
}
</script>
</body>
</html>
相关文章
CSS 教程:CSS Table(表格)
CSS 参考手册:border-collapse 属性