I have a horizontal navbar like the following:

<ul id = "Navigation">
    <li><a href = "About.html">About</a></li>
    <li><a href = "Contact.html">Contact</a></li>
    <!-- ... -->
</ul>

I use CSS to remove the bullet points and make it horizontal.

#Navigation li
{
    list-style-type: none;
    display: inline;
}

I'm trying to justify the text so each link is spread out evenly to fill up the entirety of the ul's space. I tried adding text: justify to both the li and ul selectors, but they're still left-aligned.

#Navigation
{
    text-align: justify;
}

#Navigation li
{
    list-style-type: none;
    display: inline;
    text-align: justify;
}

This is strange, because if I use text-align: right, it behaves as expected.

How do I spread out the links evenly?

link|improve this question

will the number of <li> elements be variable? – Stack 101 Jul 29 '11 at 22:18
@Stack Yes, it will. – Maxpm Jul 29 '11 at 22:40
1  
Then Mr thirtydot is the person to see. – Stack 101 Jul 29 '11 at 22:42
feedback

3 Answers

up vote 4 down vote accepted

You need to use a "trick" to make this work.

See: http://jsfiddle.net/2kRJv/

HTML:

<ul id="Navigation">
    <li><a href="About.html">About</a></li>
    <li><a href="Contact.html">Contact</a></li>
    <!-- ... -->
    <li class="stretch"></li>
</ul>

CSS:

#Navigation
{
    list-style-type: none;
    text-align: justify;
    height: 21px;
    background: #ccc
}

#Navigation li
{
    display: inline
}
#Navigation .stretch {
    display: inline-block;
    width: 100%;

    /* if you need IE6/7 support */
    *display: inline;
    zoom: 1
}

Details on IE6/7 trickery: Inline block doesn't work in internet explorer 7, 6

link|improve this answer
+1 good trick . – Stack 101 Jul 29 '11 at 22:39
Why does this work...? – Maxpm Jul 29 '11 at 23:01
2  
@Maxpm: text-align: justify only works when you have more than one line of "text" (or in this case, the lis that are inline). So, another "line" (.stretch) is added. display: inline-block allows width: 100% to work. – thirtydot Jul 29 '11 at 23:10
feedback

This might suit your needs:

#Navigation{
}
#Navigation li{
    list-style-type: none;
    text-align: center;
    float: left;
    width: 50%; /*if 2 <li> elements, 25% if 4...*/
}

demo : http://jsfiddle.net/KmqzQ/

link|improve this answer
Works nicely with the obvious caveat that you must set the correct width :) – thirtydot Jul 29 '11 at 22:38
feedback

You need to make the li a block element.

Try giving them width's in the li statement. You MAY have to display: inline-block but it should work how it is too.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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