There are some ways to achieve that, look: https://css-tricks.com/fighting-the-space-between-inline-block-elements/. But I like using negative margin-left
way because it keeps format of html clean.
nav a {
display: inline-block;
margin-right: -4px;
}
- I tried to using
font-size:0
for parent way but it is not success. - Should try
letter-spacing