Forum Moderators: not2easy
table {border-spacing:0px;
border-collapse: separate;}
td {padding:0px;
border:0px none;}
However, I still geting padding/spacing when viewing it in IE. Any cool work arounds? I'd hate to have to revert back to the cellspacing & cellpadding. :(
table {
border-collapse:collapse;
border:1px solid #000;
}th,
td {
padding:0;
border:1px solid #000;
}
I just put the borders in there so you could see it working--just take 'em out. "border-spacing" is not, if I remember correctly, supported by IE6.
-b