Hi everyone,
I have a horizontal list that I have applied a border to the right side of to act as a divider between the items, however I would like to remove it from the right side of the last list item. Any idea how I can do this?
<ul id="topmenu">
<li><a href="#">About Us</a></li>
<li><a href="#">Contact Us</a></li>
</ul>
ul#topmenu{
list-style: none;
padding-top: 50px;
}
ul#topmenu li a {
font:18px arial,sans-serif;
color:#FFFFFF;
text-decoration: none;
float: right;
padding-left: 15px;
padding-right: 15px;
border-right: 1px dotted #ffffff;
border-height: 50%;
}
Any help much appreciated!
Thanks,
Ben