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

前端 未结 2 1556
广开言路
广开言路 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
    }
    
    0 讨论(0)
  • 2021-01-25 06:10

    Try removing the whitespace between the first </div> and the second <div>. Sometimes these CRLF whitespace characters are interpreted by the browser as an indication of physical space.

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