On 6/7/2006 5:07 PM, Bill Brown wrote: >> Humbling List, >> >> Please see http://www.andrew.cmu.edu/user/bleber/css/test.html >> >> I'm looking to center two horizontal boxes (simple enough >> task). It looks fine in Mozilla, while IE 7 staggers the two >> boxes so one is lower than the other. I'm using standalone >> IE6, but that seems to have fallen back to the IE7 beta >> renderer. Maybe someone with non-IE7 setup can advise how to >> get those two boxes to be in a straight horizontal line. >> >> Thanks, >> >> Brett > > Brett, > > Try this: > > #container ul li { > display: inline; > float: left; > } > > That should work in all IEs, I believe.
It most certainly works on my machine. Thanks! I think my mental error was that I put a class on the <a> elements, and was not even styling the <li> elements (which is what I would normally do). Strangely enough, it looks like I need to float the <a>'s too. Go figure. Thanks, Brett ______________________________________________________________________ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d IE7b2 testing hub -- 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/
