Why I have spaces between links? (inline-block elements)
And how to remove it?
* {
margin: 0;
padding: 0;
border: 0;
}
a.headerLink {
display: inline-block;
padding: 15px;
color: gray;
border: 1px solid darkgray;
text-decoration: none;
}
<div>
<a href="#" class="headerLink">Main</a>
<a href="#" class="headerLink">Blog</a>
<a href="#" class="headerLink">Contacts</a>
<a href="#" class="headerLink">About</a>
</div>