How to achieve a cross browser 1 pixel table border

Sample Table with 1 pixel border.
The table outside of this one has a background color of blue.
This cell has the light yellow background.
Each of the cells in this inner table can have it's own background color. pink background white background
The idea here is that you have two nested tables.  The outer table provides a background color which is, in fact, your border color.
The inner table has it's cellspacing set to 1 pixel.  This allows the outer table color to show through the gap between the cells of the inner table.


Take a look at this example table & code to see how this is done more clearly.

Cell One Cell Two
<TABLE width="300" border="0" cellspacing="0" cellpadding="0">
  <TR>
    <TD bgcolor="#000066">
      <table width="300" border="0" cellspacing="1" cellpadding="5">
        <tr>
          <td bgcolor="#ccffff">Cell One</td>
          <td bgcolor="#ffffcc">Cell Two</td>
        </tr>
      </table>
    </TD>
  </TR>
</TABLE>