
January 22nd, 2003, 01:10 PM
|
|
Contributing User
|
|
Join Date: Jan 2003
Posts: 45
Time spent in forums: < 1 sec
Reputation Power: 11
|
|
|
Problem with Netscape 6 CSS table borders...
I've managed to apply table borders too all my TD tags and then collapsing them so they don't overlap. It looks perfect, a 1pixel border around every TD in IE5+, but in Netscape 6, the border looks to be 2 pixels, instead of 1.
Has anyone run across this effect?
Here's my CSS:
TABLE {
border-collapse: collapse;
border-color: #333399;
border-style: solid;
border-width: 1px;
}
TD {
font-size: 12px;
font-family: arial,helvetica,sans-serif;
border-color: #333399;
border-style: solid;
border-width: 1px;
}
|