当表有一个空的tbody时,Firefox无法正确呈现表格单元格边框。
但是如果你使用伪选择器tbody:empty {display:none;}
来隐藏tbody元素,那么一切都会按预期呈现。
table {
border-collapse: collapse;
}
th,
td {
border: 1px solid #000;
}
.fixed tbody:empty {
display: none;
}
<table class="broken">
<thead>
<tr>
<th>1</th>
<td>2</td>
<td>3</td>
</tr>
</thead>
<tbody></tbody>
<tfoot>
<tr>
<th>1</th>
<td>2</td>
<td>3</td>
</tr>
</tfoot>
</table>
<hr />
<table class="fixed">
<thead>
<tr>
<th>1</th>
<td>2</td>
<td>3</td>
</tr>
</thead>
<tbody></tbody>
<tfoot>
<tr>
<th>1</th>
<td>2</td>
<td>3</td>
</tr>
</tfoot>
</table>
答案 0 :(得分:6)
它很可能属于Firefox上的Bug 409254和Bug 217769。
附注:虽然空格tbody
在HTML 5中有效,但每个行组中的单元格数应在一个表格中匹配(使用colspan
除外)。
解决方法是在表格和单元格元素上单独绘制边框。
table {
border-collapse: separate; /*changed from collapse*/
border-spacing: 0;
border: 1px solid;
border-width: 0 0 1px 1px; /*draw bottom and left borders*/
}
th,
td {
border: 1px solid;
border-width: 1px 1px 0 0; /*draw top and right borders*/
}
<强> jsfiddle 强>