I am trying to put some links at the top of my site on the right side but when I do this I get a small about ten pixel space between them. Can someone please explain what is going wrong with it.
Html:
<div id="socialLinks">
<a href="www.google.com">Google</a>
<a href="www.facebook.com">Facebook</a>
</div>
Css:
#socialLinks{
/* Positioning */
margin-left:auto;
text-align:right;
}
#socialLinks a{
/* Sizing */
padding-right:5px;
padding-left:5px;
/* Decoration */
text-decoration:none;
background-color:#9FD9FF;
/* Font */
font-family:"Times New Roman", Times, serif;
font-size:25px;
/* Border */
border-style:solid;
border-right-style:none;
border-width:2px;
border-color:#000000;
}