Alright, got it to work. IE doesn't recognize <div> for this hack, I had to use <span>'s in this case. See the technique at:
http://phrogz.net/CSS/inlineblock.html

Thanks for the help,
Jack

John Haas wrote:

And come to think of it, I'm pretty sure you want to apply
    "display:inline-block" to "#features div," not "#features."

I tried that as well, it didn't work either.

Well, here's what I have now, still not working, as you can see in IE.
http://stg.participate.net

body.home #features_wrap {
 margin:0;
 padding: 0;
 background-color:#000000;
 width:100%;
 text-align:center;
}
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;
}
* html body.home #features_table {
   display: block;
   margin: 1em 0;
   text-align: center;
}
* html body.home #features {
   display: inline-block;
   width: 1px;
   white-space: nowrap;
}




Christian Montoya wrote:

On 1/22/06, John Haas <[EMAIL PROTECTED]> wrote:
/* 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;
}
/**/


But this only applies to IE Mac, if I'm not mistaken. I think you
meant to have:

* html body.home #feature_table {
* html body.home #features {

at least, if you wanted it to apply to IE Win as well.

And come to think of it, I'm pretty sure you want to apply
"display:inline-block" to "#features div," not "#features." Or maybe
that was to apply "display:inline" to "#features #div."

Let me know if you get it to work.

--
--
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/




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

______________________________________________________________________
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