I'm preparing for a time limited web designing competition and I need to have a navigation system which can be coded fast. I've been using unordered lists for this purpose. This is my html for navigation:
<ul id="nav">
<li><a href="#">About</a></li>
<li><a href="#">Something</a></li>
<li><a href="#">Another thing</a></li>
<li><a href="#">Contact</a></li>
<li><a href="#">Login</a></li>
</ul>
But I'm confused about which method should be used for styling this navigation. I know I could float the li's to left or do display:inline-block;. There's no 'best' here and it depends on the situation but which one among these two is more preferable? Thanks.