Apparently the IE fix is to apply "text-align:center" where you have
"display:table" and "display:inline-block" where you have
"display:table-row." Obviously, behind a conditional comment or hack.
Did you try that?
Yes, the hack I have in my CSS now is::

body.home #features_table {
display:table;
margin:0 auto;
}
body.home #features {
 padding: 0;
 margin: 0 auto;
 display:table-row;
 height:17.35em;
}
body.home #features div {
 display:table-cell;
 font-size: .86em;
 padding: 12px;
 width:110px;
 height:18em;
 text-align:left;
}
/* IE/Mac \*//*/
body.home #features_table {
   display: block;
   margin: 1em 0;
   text-align: center;
}
body.home #features {
   display: inline-block;
   width: 1px;
   white-space: nowrap;
}
/**/


-Jack

--
--
Christian Montoya
christianmontoya.com ... rdpdesign.com ... cssliquid.com
______________________________________________________________________
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/




--
----------------------------

John Haas
Web/Multimedia Designer

[man][ape] design

w: http://www.manapedesign.com
e: [EMAIL PROTECTED]
p: 215.868.2661

630 N. 17th St. #1
Philadelphia, PA 19130

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

Reply via email to