> I've been lurking for a little while and I'm pleased to present my first > question :-) > > This may be common knowledge, but is it impossible to render a list as > inline in IE 4.0 (Win, for the sake of this argument)? I cannot get 'float' > or 'display' to work. > > This is for the purposes of a horizontal navigation bar.
Off the top of my head: 1) IE4 has bad support for the display declaration. 2) IE4 supports width on only a few elements, and I'm not sure if LI is one of them. Without a defined width float-based solutions won't work because the element will float, but will also take 100% width (or the width of its inner text). I think you should drop the ul/li-approach and instead place every link in a div and float that div and give it a width. That should work (I think). -- ------------------------------------------------------------------- ppk, freelance web developer http://www.quirksmode.org/ ------------------------------------------------------------------ ______________________________________________________________________ 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/
