-2

我的应用程序在 IE9 Quirks 模式下渲染得很好,但在标准模式下却不行。

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

图像-1怪癖模式

图像-2标准模式

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

4

2 回答 2

0

最好使用严格的文档类型:

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

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

于 2013-05-06T21:01:21.387 回答
0

我改变了CSS如下。

display: inline;

display: inline-block;

它解决了我的问题。

于 2013-05-08T19:16:13.583 回答