Why does Opera 9 have a space between these two images?

前端 未结 2 1557
广开言路
广开言路 2021-01-25 05:46

Every other browser is rendering this correctly.


    
2条回答
  •  孤街浪徒
    2021-01-25 06:03

    If it's the issue I think it is, it should be fixed if you add this CSS:

    img {
        vertical-align: top
    }
    

    Or this:

    img {
        display: block
    }
    

提交回复
热议问题