We are trying to create a columns of list items with the following HTML:

<ul>
     <li>Item</li>
     <li>Item</li>
     <li>Item</li>
etc.
</ul>

and CSS:

ul {
     margin:0 0 1em 2em;
     list-style-position:outside;
}

li {
     float:left;
     width:33%;
}

The columns form as we wanted, but IE loses the list item bullet when
the list item is floated.  We've found links to articles illustrating
the problem, but no one has a nice, semantic solution.  Anyone know
what's going on and how we can fix it?

-- 
Bryce Fields
http://www.kentucky.gov/

"Do or do not! There is no try!" -- Yoda
______________________________________________________________________
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/

Reply via email to