On Sep 29, 2007, at 11:10 AM, Bob Salsburg wrote: > http://www.christchurchgastonia.org/bullets.html > > I lifted these two lists out of my page to troubleshoot style > elements, > etc. I even embedded the relevant styles in the header. It appears > that, in IE7 (grrrrr), the bullets shift to the last line in a wrapped > item. So, I present this simplified example for your perusal. > > Browsers that work are legion: All in fact - well, it wouldn't > surprise > me if IE6 was broken too. I don't have it.
IE 6 and IE 7 behave the same. That behaviour is a side effect of 'haslayout' [1], triggered here because you apply a width to the <li>. The best way, if you need to constrain a list to a certain width, is to wrap that list in a div and apply the width to the div. (btw - you're missing a closing '}' in your stylesheet) [1] <http://www.satzansatz.de/cssd/onhavinglayout.html> Philippe --- Philippe Wittenbergh <http://emps.l-c-n.com> ______________________________________________________________________ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d List wiki/FAQ -- http://css-discuss.incutio.com/ List policies -- http://css-discuss.org/policies.html Supported by evolt.org -- http://www.evolt.org/help_support_evolt/
