Hi there,
I created highlight button, but color does not fill all button space. There is some gap on the left side button.
thanks for any hint.
html code:
<div id="primarynavigationbar">
<ul>
<li><a id="homebutton" href="index.html" accesskey="1">Home</a></li>
<li><a id="bootsbutton" href="boots.html" accesskey="2">Boots</a> </li>
<li><a id="clothingbutton" href="#">Clothing</a></li>
<li><a id="accessoriesbutton" href="#">Accessories</a></li>
<li><aid="aboutusbutton"accesskey="3"href="aboutus.html">
AboutUs</a> </li>
</ul>
</div><!--primarynavigationbar end -->
and css
#primarynavigationbar {
background-color: #171717;
border-top: 0.04em solid #dddddd;
font-size: small;
padding:0.8em;
}
#primarynavigationbar ul li a {
border-right: 0.04em solid #dddddd;
}
#primarynavigationbar li a {
text-decoration:none;
color:#dddddd;
padding-left: 1.5em;
padding-right: 1.5em;
padding-top: 0.8em;
padding-bottom:0.8em;
}