-1

我刚刚为客户启动的网站在 Internet Explorer 中无法正确呈现。它适用于除 IE 之外的所有浏览器。

4

1 回答 1

4

在第 1 行<link rel>中定义了标签,因此您的浏览器不会检测到 doctype 并进入quirks mode

见下文:

 <link rel="shortcut icon" href="http://pacayamountaincoffee.com/wp-content/themes/pacayamountaincoffee/favicon.ico" />
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

您的<link rel>标签应该在<head>标签内

 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">    
 <head>    
    <link rel="shortcut icon" href="http://pacayamountaincoffee.com/wp-content/themes/pacayamountaincoffee/favicon.ico" />
 </head>
于 2012-07-26T05:35:03.233 回答