I have a disordered navigation system like this. When the anchor moves, the navigation list moves 1px to the left. How to fix it?
Here is my code
<ul id="nav">
<li><a href="#">First</a></li>
<li><a href="#">Second</a></li>
<li><a href="#">Third</a></li>
</li>
Here is my css:
ul#nav li {
float: left;
margin: 0; padding: 0;
}
ul#nav li a:hover {
-moz-border-radius:3px;
border: 1px solid #ccc;
}
source
share