hi all i am having trouble getting the correct spacing i need between my links across a horizontal navigation bar. i would like all the links to be spaced evenlly across the space available.
here is my code as it stands
html
<div id="nav">
<ul id="navigation">
<li><a href="index.html">link</a></li>
<li><a href="page1.html">link</a></li>
<li><a href="page2.html">link</a></li>
<li><a href="page3.html">link</a></li>
<li><a href="page4.html">link</a></li>
<li><a href="page5.html">link</a></li>
<li><a href="page6.html">link</a></li>
</ul>
</div>
css
#nav{
width : 100%;
background-color : #60F;
border-bottom : solid #FFF;
text-align : center;
}
#navigation ul{
list-style : none;
}
#navigation li{
display : inline;
font-family : "Trebuchet MS", Arial, Helvetica, sans-serif;
font-size : 1.5em;
}
#navigation li a{
text-decoration : none;
font-weight : bold;
color : #FFF;
}
any help with this would be great thanks for reading.