0

Possible Duplicate:
HTML List element : Sharing the parent width into equal parts

I have a div that contains a ul element:

<div style="width: 800px">
    <ul style="width: 100%">
        <li>...</li>
        ....
        <li>...</li>
    </ul>
</div>

How do I automatically give the li elements equal space throughout the ul?

Community
  • 1
  • 1
Ben Potter
  • 875
  • 5
  • 20
  • 34
  • 2
    Duplicate: http://stackoverflow.com/q/6310632/681807 – My Head Hurts May 10 '12 at 07:09