最佳答案
考虑下面的 HTML:
<html>
<head>
<style>
TABLE.data TD.priceCell
{
background-color: #EEE;
text-align: center;
color: #000;
}
div.datagrid table
{
border-collapse: collapse;
}
div.datagrid table tbody
{
position: relative;
}
</style>
</head>
<body>
<div id="contents" class="datagrid">
<table class="data" id="tableHeader">
<thead>
<tr class="fixed-row">
<th>Product</th>
<th class="HeaderBlueWeekDay">Price</th>
<th class="HeaderBlueWeekDay">Discount</th>
</tr>
</thead>
<tbody>
<tr style="font-style: italic;">
<td>Keyboard</td>
<td class="priceCell">20</td>
<td style="border-right: #3D84FF 1px solid; border-left: #3D84FF 1px solid;" class="priceCell">2</td>
</tr>
</tbody>
</table>
</div>
</body>
</html>
注意,最后一个单元格的内联样式中有一个左边框和一个右边框。你(或者至少是我)希望这是可见的。在 IE 中,情况是这样的。但是在 Firefox (6)中,这不是。你可以通过以下方法解决这个问题:
div.datagrid table tbody
的位置div.datagrid table tbody
更改为 div.datagrid table
table.data td.priceCell
上的 background-color
div.datagrid table
上的 border-collapse
这是我们代码的简化版本; 我们也解决了这个问题(通过选择选项2)。但我想知道的是:
特别是: 当 CSS 保持原样时,Firefox 为什么不显示边框?