0

嗨,我的 html 中有以下代码。

<html>
    <tr>
    <td>
       some code here...
    </td>

    <td align="left" valign="top" width="35%">
        <img    src="http://ocs.landsend.com/lebowebcontent/images/global/marketing/TrueValue_SHIP_IMG.jpg" onerror='this.src="http://ocs.landsend.com/lebowebcontent/images/global/marketing/Stand_Ship_UPS_or_USPS.jpg";this.onerror=""' />
    </td> 

    </tr>
</html>

图像必须显示在屏幕顶部的第二列,但它在 IE 的底部显示 .. 但它在 Firefox 和 chrome 中工作正常。

请帮忙..

4

1 回答 1

1

您缺少文档类型,并且 IE 不那么宽松。把它放在 html 代码的开头:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
于 2013-04-19T07:47:15.727 回答