列之间的表格边框

时间:2014-05-31 18:00:01

标签: html css html-table

说我有一个这样的简单表:

<table>
<tr>
    <td>
        cell
    </td>
    <td>
        cell
    </td>
</tr>
<tr>
    <td>
        cell
    </td>
    <td>
        cell
    </td>
</tr>
</table>

然后,我使用此css在列之间添加边框:

td:not(:last-child){
    border-right:1px solid black;
}

然后我在每行D:

之间的边界上得到空格

enter image description here 我希望它看起来像这样:

enter image description here
我怎样才能摆脱这些空间?

http://jsfiddle.net/Tgr48/

1 个答案:

答案 0 :(得分:2)

折叠表格边框会这样做:

table {border-collapse:collapse;}