Reputation: 12512
It appears to me that IE9 does not recognize cellspacing. Anybody noticed the same too?
<table cellpadding="0" cellspacing="10" border="0" align="center" width="100%">
Upvotes: 5
Views: 4375
Reputation: 1
IE9 ignores css border-spacing. Use both css border-spacing and a redundant html cell-spacing attribute.
Upvotes: 0
Reputation: 31878
It's better to use the CSS border-spacing
attribute, anyway. Most browsers support it, Internet Explorer does since IE 8.
Upvotes: 1