Why is Firefox removing 1px from the border's value as defined in the CSS file?
.aprovGriditem th
{
border-collapse: collapse;
border: 4px solid #BBC6E3;
padding: 0;
}
UPDATE
<table cellpadding="0" cellspacing = "1" runat="server" id="tblEmployees" width="100%">
<tr id="tr1" runat="server" class="aprovGriditem">
<td>
<asp:Label ID="Label1" runat="server">
</td>
</tr>
</table>
When inspecting with firebug, the border's value shows 3. Setting it to 3 results in 2. How can this be resolved?