How to avoid White line between img and td bottom?

前端 未结 1 1222
死守一世寂寞
死守一世寂寞 2020-12-21 23:09

I have made a banner img in a td element. I have included a reset script to remove all margins, paddings and spaces everywhere.

<         


        
1条回答
  •  有刺的猬
    2020-12-21 23:29

    The default vertical-align property for an img element is baseline.

    Changing it to top, middle or bottom fixes the issue.

    jsFiddle example

    td img {
        vertical-align:top;
    }
    

    Alternatively, you can also add display:block to the img element.

    jsFiddle example

    td img {
        display:block;
    }
    

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