Hostile17 wrote:
Quote:
I've been trying to figure out a good way to make a CSS layout with
nice-looking 1-pixel borders around the table cells.
The only broadly compatible way to do this I know of is to have
* the border of the table set to zero
* the cellspacing of the table set to one
* the background color set to black
* the table cell background color set to white |
How about
:
table { border-collapse: collapse; }
th, td { border: 1px solid black; }
Hmm, did you say Netscape 4... that's no fun.