CSS表格左边界线

时间:2018-11-28 21:34:25

标签: html css html-table

我想在表格中的th元素上应用左边框。问题是,当我放置CSS边框样式时,在行(tr)后会有一个空白“空格”-参见图片。

<table>
<tr>
   <th>
       ....
   <th>
</tr>
<tr>
   <th>
       ....
   <th>
</tr>
</table>

我在所有元素上都使用border-left: 1px solid #2185d0;

enter image description here

但是我想要这样的完整行:

enter image description here

我该怎么做?

2 个答案:

答案 0 :(得分:3)

也许将其添加到您的CSS中?

table {
    border-collapse: collapse;
}

答案 1 :(得分:0)

我认为问题出在表的CSS样式中。如果您可以为此提供代码段(特别是),那将真的有帮助。

我怀疑您的边距或填充设置阻止了表格单元相互接触,从而在边界线之间产生了间隔。