Many thanks for the fix Ingo. It works very well. Yasir > Yasir Assam wrote: > >> ... >> http://archivist.incutio.com/viewlist/css-discuss/84900 >> >> That solution needs some revision now because I need to use images of >> different heights, and on IE the images are top-aligned, and I need them >> to be bottom-aligned. I've tried various things but I can't find a >> workaround. >> >> Here's the problem page: >> http://endlessvoid.com/test_css/test7.html >> >> Does anyone have any idea how I might get these images aligned along the >> bottom in IE? Note that the menu us implemented very differently on >> other browsers (there's an IE-only CSS section) and there's no problem >> in other browsers. >> >> > > Inside the conditional comment, replace .menupic and .menupic_inner with > > .menupic { > display:inline; > zoom: 1; > text-align: center; > margin: 0 1em; > border: 1px blue dashed; > } > > .menupic_inner { > display:inline; > zoom: 1; > } > > (I don't see a reason to position them relatively) > > Here, .menupic does not float, but acts like inline-block, due to > display:inline + haslayout (via zoom:1). > > .menupic_inner gets the same inline-block behavior, in order to center > it like text with text-align:center;. Probably not intended. > > This does not work around the problem that there is no > display:table-cell in IE, so you can't have them at equal height out of > the box. > > Ingo > >
______________________________________________________________________ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d IE7 information -- 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/
