3px extra height on a div with an image inside it

后端 未结 1 1890
Happy的楠姐
Happy的楠姐 2021-02-09 08:35

I\'m working on a new site but there is a small design thing which I just can\'t get my head around.

Basically, I\'m creating a site which users are able to upload funny

相关标签:
1条回答
  • 2021-02-09 09:21

    It's due to the default vertical-align value of images. They are baseline. Change to top or bottom and it will go away.

    img{
        vertical-align: top;
    }
    

    The extra space is the area below the baseline which is for letters that hang below like y or g.

    0 讨论(0)
提交回复
热议问题