been having fun and games trying to get a table styled.
typical structure is
what i'm trying to do is put a a 1px solid #000 border around each tr except the header ones.
The tr's need to have spacing between them and I don't want the order showing within the tr i.e. on the td's. Somthing like so
The only way I can do it it seems is to wrap each tr in a seperate table but I want to keep the code as clean as possible.
Oh and this must work in IE6
typical structure is
Code:
<table>
<tr>
<th>test</th>
<th>test2</th>
<th>test3</th>
</tr>
<tr>
<td>data1</td>
<td>data2</td>
<td>data3</td>
</tr>
</table>
what i'm trying to do is put a a 1px solid #000 border around each tr except the header ones.
The tr's need to have spacing between them and I don't want the order showing within the tr i.e. on the td's. Somthing like so

The only way I can do it it seems is to wrap each tr in a seperate table but I want to keep the code as clean as possible.
Oh and this must work in IE6