Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的应用程序在 IE9 Quirks 模式下渲染得很好,但在标准模式下却不行。
例如:在 Quirks 模式下渲染 div 背景图像,而不是在标准模式下。
怪癖模式
标准模式
我应该怎么做才能解决这个问题?
最好使用严格的文档类型:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
通过w3c验证 html : http://validator.w3.org/
http://validator.w3.org/
我改变了CSS如下。
display: inline;
至
display: inline-block;
它解决了我的问题。