Every other browser is rendering this correctly.
-
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)
-
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)