Last Updated: February 25, 2016
·
925
· ausi

Remove spaces between inline-block elements

.box-wrapper{
    letter-spacing: -0.3em;
}
.box{
    display: inline-block;
    letter-spacing: normal;
}

The value -0.3em depends on the fonts space character width. But -0.3em should work for the most fonts.