Hi folks,

Unfortunately I noticed recently that IE (even 7) doesn't support
border-spacing:8px. I'm wondering what the best workaround for IE is?
While googling this topic I found something called dynamic properties
(something I had never heard of before), where you basically inject
javascript or attributes in css. So the workaround would be:

border-spacing:8px;
/* for IE */
border-spacing:expression(cellspacing:8);

Does anybody have any experience with the 'expression' syntax? How well does
this work?
It seems that "Dynamic Properties" opens up a whole new world of getting IE
to behave like other browsers. I'm kind of surprised that this isn't used
more for dealing with IE lack of css features.

btw, unfortunately using cellspacing inside the table tag is not doable at
this point because the HTML is generated and the same code is used for other
areas where cellspacing should be 0 not 8.

Thanks
______________________________________________________________________
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
IE7 information -- http://css-discuss.incutio.com/?page=IE7
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to