Say I have
td.category {
border: 1px solid #666666;
}
td.item {
border: 1px solid #666666;
}
If I make a table like this...
<table>
<tr>
<td class='category'>Blah 123</td>
</tr>
<tr>
<td class='item'>Blah 321</td>
</tr>
</table>
The bottom border of category and the top border of item TD's do not overlap... they create a double width border. (I am testing this using FireFox)
Is there any way around this? I have tried messing around with taking 1 border side off with css and such but I run into problems no matter what because there is always a side with 1 border off in the table.
Cliffs: I am getting double thick borders where TD's ajoin. Question is how do I make them all the same width even if borders are ajoined.
td.category {
border: 1px solid #666666;
}
td.item {
border: 1px solid #666666;
}
If I make a table like this...
<table>
<tr>
<td class='category'>Blah 123</td>
</tr>
<tr>
<td class='item'>Blah 321</td>
</tr>
</table>
The bottom border of category and the top border of item TD's do not overlap... they create a double width border. (I am testing this using FireFox)
Is there any way around this? I have tried messing around with taking 1 border side off with css and such but I run into problems no matter what because there is always a side with 1 border off in the table.
Cliffs: I am getting double thick borders where TD's ajoin. Question is how do I make them all the same width even if borders are ajoined.
