Space between div and img?

后端 未结 4 1045
我在风中等你
我在风中等你 2020-12-14 01:29

I have code like this:

        

1. Orange

some text in here

4条回答
  •  天涯浪人
    2020-12-14 01:57

    I had a 3px gap between an image and div tag. Also all styles were set to 0. Really weird.

    The fix:

    img {
       vertical-align: middle;
    }
    

    This worked beautifully for me.

提交回复
热议问题