Forum Moderators: not2easy
I have a horizontal menu, in which there are menu items in little boxes. Due to the limited CMS we're using, I have no control over the markup, which looks like this:
<div>
<ul>
<li><a></a></li>
</ul>
</div>
I've been asked to make this menu fit exactly a 700px width, so the left-most box's left edge lines up along the left margin and the right-most box's. Each list item has a variable width depending on the menu option. Naturally, all browsers render text slightly differently, which affects the width of the menu item, so the only option right now is pick the common default size and tweak the sizes for ten browsers.
This isn't fun, so I was hoping there's another option. I'm not sure this is even possible in theory.
Thanks.