How do I remove the visibility of spaces between inline elements?
问题 Say I have several inline-block div tags, like this <div class="image"> </div> <div class="image"> </div> class image just sets their size to 100x100 and a gray background color. Their margin and borders are set to 0, and yet there is spacing between the two rectangles. If I write the HTML such as this, however: <div class="image"> </div><div class="image"> </div> Removing all whitespace between the divs, the spacing disappears. Since I don't want to write my HTML like that, I'm thinking that