santa
santa

Reputation: 12512

IE9 and cellspacing

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

Answers (3)

user2242225
user2242225

Reputation: 1

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

Upvotes: 0

Benjamin Wohlwend
Benjamin Wohlwend

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

Cheeso
Cheeso

Reputation: 192637

Try using CSS.

See also, this recent question.

Upvotes: 1

Related Questions