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
?