Why does my image have space underneath?

前端 未结 3 1853
梦毁少年i
梦毁少年i 2020-11-22 06:49

Images gain a mysterious empty space underneath, even if padding:0;margin:0 are applied.

Demonstration

3条回答
  •  青春惊慌失措
    2020-11-22 07:12

    Changing img to a block level element

    img {
      display: block;
    }
    

    will also remove the space below the image.

提交回复
热议问题