Space between div and img?

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

I have code like this:

        

1. Orange

some text in here

4条回答
  •  臣服心动
    2020-12-14 02:03

    Add display: block; to the .separator image.

    .separator {
        margin: 0;
        padding: 0;
        display: block;
    }
    

    The problem is that images can sometimes add a bit of magic space up/below them, I have this issue whenever I'm working with image elements as *block* elements.

提交回复
热议问题