Well, this depends on how you're setting font size for the rest of your document. You can use percentages, EMx, pixels (px) and point sizes (pt). Each have their pros and cons, mostly related to accessibility.
Setting a percentage will allow you to have relatively uniform sizes across browsers. So, it depends on your design and your goals.
Here (
http://www.dave-woods.co.uk/?p=79) are some thoughts on that whole issue and some recommendations as well.
ul#id is a unordered list with an id of "id"
HTML Code:
<ul id="id">
<li>List Item</li>
</ul>
#id ul is an unordered list within an element with an id of "id"
HTML Code:
<div id="id">
<ul>
<li>List Item</li>
</ul>
</div>
Again, this depends on what unit your using for sizing and also what the browser's settings are.
You might want to look at the Yahoo UI Libraries to see how to normalize fonts across browsers:
http://developer.yahoo.com/yui/fonts/
http://developer.yahoo.com/yui/reset/
It depends on your need for them. There isn't a right/wrong way. CSS Menus utilize unordered lists. Of course, when create lists.
Bookmarks