How do I remove the visibility of spaces between inline elements?

前端 未结 3 543
甜味超标
甜味超标 2020-12-20 20:07

Say I have several inline-block div tags, like this

cla

3条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2020-12-20 20:26

    put the following on a parent element:

    word-spacing:-4px;
    

    Or try:

    font-size:0px;
    

    It might work even better as it will not be affected by text resizing.

提交回复
热议问题