Having difficulty with word spacing within a div using spans. Take a look at the following HTML code:
<div class="footer-links">
<span><a href="#">Suggestions</a></span>
<span><a href="#">Help</a></span>
<span><a href="#">Contact us</a></span>
</div>
Here is the accompanying CSS :
.footer-links{
float: right;
margin-top: 11px;
margin-bottom: 11px;
}
You can view a JS fiddle of this here.
Any tips on how to improve word spacing for better readability?
Thank you!