刚刚推出的网站,Internet Explorer中的问题

时间:2012-07-26 05:22:19

标签: css wordpress

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

1 个答案:

答案 0 :(得分: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>