View Single Post
Old 03-21-2007, 05:16 AM   #10 (permalink)
DJMaze
Senior Contributor
 
DJMaze's Avatar
 
Join Date: Mar 2005
Posts: 676
DJMaze is on a distinguished road
Quote:
Originally Posted by sde View Post
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; }
'
;

__________________

UT: Ultra-kill... God like!
DJMaze is offline   Reply With Quote