如何删除表格中的边框间距
我有一张桌子,第一排就像
<tr>
<th>1</th>
<th>2</th>
</tr>
我给黑色背景添加了“th”。 现在1和2单元格之间有某种边界/将它们分开......我看了一下源代码,我想我找到了一些东西:
border-collapse: separate;
border-spacing: 2px;
这个CSS代码在源代码中被列为“user agent stylesheettable”,我无法启用/禁用它来测试这是否是问题,但我试着添加了相同的代码,但是使用了“none”和“0”参数,但是它既没有帮助,也没有...
有人可以帮助和指导我请在哪里边框?
您的表格默认情况如下,并在表格ID或类别上设置css规则
<table border="0" cellspacing="0" cellpadding="0">
<tr>
<th>1</th>
<th>2</th>
</tr>
</table>
CSS:
border-collapse: collapse;
在你的表上设置一个CSS规则:
table {
border-collapse: collapse;
}
您可以访问此jsFiddle示例,并将collapse-collapse属性从折叠切换为单独查看它如何更改表格的布局。 border-collapse属性只能是折叠,分离或继承。
border-collapse: none
无效。 尝试border-collapse: collapse
。