我表中的第一行有三个单元格。我正在尝试设置具有四个单元格的第二行。我希望所有的边界都是一样的。但是,我无法做到这一点,因为底行(有四个单元格的行)的单元格要么有双边框,要么没有边框。我已经厌倦了border-collapse和border-style-right,没有运气。我怎样才能让底行看起来就像顶行一样 - 有一个 1px 边框 - 除了 4 个单元格而不是 3 个单元格?这是我的代码:
<style type="text/css">
table
{
border-collapse:collapse;
}
table.outer
{
border: 1px black solid;
border-collapse: collapse;
width:750px;
}
table.outer td
{
border: 1px black solid;
border-collapse: collapse;
}
table.nested
{
width: 750px;
}
table.nested td
{
border:0px black solid;
border-collapse:collapse;
}
</style>
</head>
<body>
<table class="outer">
<tr>
<td>foo 1</td>
<td>foo 2</td>
<td>foo 3</td>
</tr>
<td colspan="3">
<table class="nested">
<tr>
<td>bar 1</td>
<td>bar 2</td>
<td>bar 3</td>
<td>bar 4</td>
</tr>
</table>
</td>
</table>