我似乎找不到一个解决方案。
Here是这个问题的一个例子
table td { border-left: 1em solid transparent; border-top: 1em solid transparent; }
这会将“边框间距”设置为正常,除了在表格的顶部和左侧有“不需要的”间距。
table td:first-child { border-left: 0; }
选择第一列。
table tr:first-child td { border-top: 0; }
选择第一行的td元素(假设表的顶部以tr元素开始,相应地改变th)。