Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question

2 Answers

For an overview and comparison of the benefits of both methods, This Article is pretty informative. Here's Another, more recent article.

I prefer inline-block because if allows you to specify the height and width of an element's bounding box.

share|improve this answer

I would have to say floating the list items and then clearing theme via the unordered list is the most backwards compatible, but if you don't want to have to worry a lot about setting a width for the unordered list, I would go with inline block.

Inline block works on most current browsers, but it may not work on the older ones so much... But we are designing and developing for a modern web right? So go ahead and use inline block.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.