我的代码在这里:
HTML
<nav id="pages">
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Donate</a></li>
<li><a href="#">Video</a></li>
<li><a href="#" class="last">Contact</a></li>
</ul>
</nav> <!-- end pages -->
CSS
#pages{
position: absolute;
right: 0;
top: 70px;
ul li{
float: left;
margin-right: 5px;
a{
color: @link-color;
display: block;
padding: 0 10px;
border-radius: 5px;
font-weight: bold;
}
}
}
.last{
margin-right: 0;
}
我将“last”类添加到最后一个孩子以删除边距但不受影响。我不使用 :last-child 因为它不适用于 IE6 或 IE7。希望有人帮忙?