I have this html:

<div id="menu">
    <a href="#">Commissions</a>
    <a href="#">Business Setup</a>
    <a href="#">Administrator</a>
    <a href="#">Content Management</a>
    <a href="#">Inventory</a>
    <a href="#">Communications Tools</a>
    <a href="#">Genealogy</a>
    <a href="#">Reports</a>
</div>

And css:

#menu {
    width: 1000px;
    float: left;
    font-size: 9pt;
    text-align: justify;
}
#menu a {
    text-decoration: none;
    color: #0066cc;
    font-size: 9pt;
}
#menu a:hover {
    text-decoration: underline;
}

I want to do, that my links will be by all width. text-align: justify; doesn't work. Please help me. Thank you in advance. Sorry for my english.

link|improve this question

5  
You can only justify when there are multiple words, as it's made for flushing the edges of paragraphs. I can't really tell what you're trying to achieve. Do you really want each <a> element to stretch across 1000px? Note: you probably want to add "display:block;" to "#menu a". Then you could add "letter-spacing: 50px;" or something to the "#menu a" elements, but I doubt that's what you want. – danneu Dec 19 '10 at 10:58
1  
Do you want the text in your <a> elements to be all the same width? – Kyle Sevenoaks Dec 19 '10 at 12:02
No. All links have different length. But length between these links should be the same. – plutov Dec 19 '10 at 12:07
add a margin: 0px 20px 0px 0px;? – Jan Dec 19 '10 at 12:16
@Jan. My question is about text-align: justify. – plutov Dec 19 '10 at 12:27
show 2 more comments
feedback

2 Answers

up vote 1 down vote accepted

No. All links have different length. But length between these links should be the same.

I have only a tables solution. http://jsfiddle.net/Flack/Q7z6q/

I know it's dirty and will be glad if someone comes with a better idea.

link|improve this answer
feedback

I'm not sure if I completely understand your question, but by the sounds of things you want justify to do something that it was not designed to do.

Only when a line of text wraps at the right edge of a container will the text be justified.

This however, cannot really happen in your menu.

So instead of a justify fix (I say fix, although nothing is broken), I instead have another suggestion.

From my understanding you want your links evenly spread across your div.

The best way I can think of is to give the a elements a percentage based width based on the number of links and align to center instead of justify.

For example:

#menu a {
    text-decoration: none;
    color: #0066cc;
    font-size: 9pt;
    width: 12%;
    display: inline-block;
    text-align: center;
}

I don't know if it is what you want but you can try it and see what you think.

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.