Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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%">
like image 952
santa Avatar asked Nov 06 '22 03:11

santa


2 Answers

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

like image 174
Benjamin Wohlwend Avatar answered Nov 09 '22 12:11

Benjamin Wohlwend


Try using CSS.

See also, this recent question.

like image 31
Cheeso Avatar answered Nov 09 '22 12:11

Cheeso