I have a horizontal menu. The markup looks like this:
<ul class="menu">
<li>Item 1</li>
<li>Longer Item 2</li>
<li>Item 3</li>
</ul>
Submenus and suckerfish dropdowns will come later.
The ul needs to span the width of the page (e.g. 100% or 1000px).
The lis should vary in width based on their content.
So the result would look like this:
-----------------100% of page------------
|--Item 1--|--Longer item 2--|--Item 3--|
Now it is easy to do this by fixing a width for each li tag, but because the menu will be CMS driven I need to allow the width of the tabs to vary automatically. With a table this would be trivial, but I can't think of a way to do it with a ul.