SyntaxFix
Write A Post
Hire A Developer
Questions
<span> is an inline element so you cant make spacing on them without making it block level. Try this
<span>
Horizontal
span{ margin-right: 10px; float: left; }
Vertical
span{ margin-bottom: 10px; }
Compatible with all browsers.