5

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%">
fernandopasik
  • 9,565
  • 7
  • 48
  • 55
santa
  • 12,234
  • 49
  • 155
  • 255

3 Answers3

1

Try using CSS.

See also, this recent question.

Community
  • 1
  • 1
Cheeso
  • 189,189
  • 101
  • 473
  • 713
1

It's better to use the CSS border-spacing attribute, anyway. Most browsers support it, Internet Explorer does since IE 8.

Benjamin Wohlwend
  • 30,958
  • 11
  • 90
  • 100
  • here is what I did: `` instead of: `
    ` Both worked the same for chrome and ie9; and they worked as intended for chrome, but not for ie9 :(
    – ciuncan Apr 11 '12 at 12:47
0

IE9 ignores css border-spacing. Use both css border-spacing and a redundant html cell-spacing attribute.