Quote:
Originally Posted by sde
djm, renders nicely in FF, .. any way to be able to use that with IE?
|
As with many web-standards...... NO
But as always, there are people listed at google who do create workarounds
Mostly i just generate CSS thru php and:
PHP Code:
if (MSIE) {
echo '
/* stupid IE never heard of standards */
.table { display: block; width: 200px; }
.table-cell { display: block; width: 80px; float: left; }
';
} else {
/* you have a cool browser */
echo '
.table { display: table; }
.table div { display: table-cell; }
';
}