我正在创建一个调整大小以适合窗口的横幅(我获得了博客文章的代码)并且它在Firefox中运行良好,但它在IE8中根本不显示。请帮忙!!
<html>
<body>
<div style=”position:relative; width:100%; height:100%; margin:0px; padding:0px; left:0px;right:0px;z-index:1”><img src="https://na6.salesforce.com/servlet/servlet.ImageServer?id=01580000000pT8r&oid=00D80000000aYeL&lastMod=1273785188000" width=”100%”></div>
<div style=”z-index:2; position:relative; margin:0px; padding:0px;”>
</div>
</body>
</html>
答案 0 :(得分:2)
您尚未关闭img标记。它应该如下:
<img src="https://na6.salesforce.com/servlet/servlet.ImageServer?id=01580000000pT8r&oid=00D80000000aYeL&lastMod=1273785188000" width=”100%” />
我猜这是造成问题的原因。也许Firefox在从糟糕的标记中恢复时比IE8更聪明。
修改强>
Baloo的answer一开始让我感到困惑,因为我看不出他建议的改变,但似乎另一位用户编辑了这个问题并删除了那些替代字符集的语音字符。
答案 1 :(得分:0)
用latin1“
替换utf-8”<html>
<body>
<div style="position:relative; width:100%; height:100%; margin:0px; padding:0px; left:0px;right:0px;z-index:1"><img src="https://na6.salesforce.com/servlet/servlet.ImageServer?id=01580000000pT8r&oid=00D80000000aYeL&lastMod=1273785188000" width="100%"></div>
<div style="z-index:2; position:relative; margin:0px; padding:0px;">
</div>
</body>
</html>
或者更确切地说,确保将其保存为相应的编码,IE8在这里播放效果很好