IE 9渲染问题在标准模式下

时间:2013-05-06 20:36:23

标签: html css internet-explorer-9 quirks-mode

我的应用程序在IE9 Quirks模式下呈现良好,但在标准模式下无法呈现。

例如:在Quirks模式下渲染div背景图像,但不在标准模式下渲染。

Image-1怪癖模式

Image-2标准模式

我该怎么做才能解决这个问题?

2 个答案:

答案 0 :(得分:0)

最好使用严格 doctype:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">

通过 w3c 验证html: http://validator.w3.org/

答案 1 :(得分:0)

我按如下方式更改了CSS。

display: inline;

display: inline-block;

它解决了我的问题。

相关问题