仅为选定单元格连续右边框

时间:2014-12-11 18:39:08

标签: html css css-tables cells

Related Question

以上问题类似。但我想知道右边界是否可以连续?

如何使垂直线之间的间隙消失并使其看起来像一条连续线? 此外,我必须使用内联CSS样式。无法在头部内部使用外部CSS或样式标记。

1 个答案:

答案 0 :(得分:0)

你可以通过这样做来实现这个目标

   table {
    border: none;
    border-collapse: collapse;
}

td {
    border: none;
    border-right: solid 1px #333;
    padding: 10px;
}

tr td:last-of-type {
    border: none;
}

enter image description here

Click to see working example