Is there a way to recreate this border="0" cellspacing="0" cellpadding="0" in NS4 with CSS? I've tried
table { border: 0px; border-width: 0px; margin: 0px; padding:0px; }
tr { border: 0px; border-width: 0px; margin: 0px; padding:0px; }
td { border: 0px; border-width: 0px; margin: 0px; padding:0px; }
but it still leaves a little bit of space. Any ideas?You must be a glutton for punishment.
Tables are one of NS 4's biggest problems. Most styles do not work properly on tables, especially the TABLE and TR tags where they don't work at all. NS 4 will only apply styles on tags that are "containers". The TABLE and TR are not considered "containers", only the TD and TH (possibly CAPTION, but I never tried it).
table { border: 0px; border-width: 0px; margin: 0px; padding:0px; }
tr { border: 0px; border-width: 0px; margin: 0px; padding:0px; }
td { border: 0px; border-width: 0px; margin: 0px; padding:0px; }
but it still leaves a little bit of space. Any ideas?You must be a glutton for punishment.
Tables are one of NS 4's biggest problems. Most styles do not work properly on tables, especially the TABLE and TR tags where they don't work at all. NS 4 will only apply styles on tags that are "containers". The TABLE and TR are not considered "containers", only the TD and TH (possibly CAPTION, but I never tried it).