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.
<a>elements to be all the same width? – Kyle Sevenoaks Dec 19 '10 at 12:02margin: 0px 20px 0px 0px;? – Jan Dec 19 '10 at 12:16text-align: justify. – plutov Dec 19 '10 at 12:27