在处理website时,我遇到了一些主要的CSS错误。该网站在Firefox和Chrome中正常显示,但在IE中显示完全错误。我正在使用Blueprint CSS框架,它有一个IE样式表,旨在修复特定于IE的错误。然而,我注意到蓝图样式似乎渲染得很好,但我个人样式表中的样式不是?这是网页的负责人:
<head>
<meta http-equiv="Content-type" content="text/html; charset=utf-8" />
<link rel="stylesheet" href="css/blueprint/screen.css" type="text/css" media="screen, projection"/>
<link rel="stylesheet" href="css/blueprint/print.css" type="text/css" media="print"/>
<!--[if lt IE 8]>
<link rel="stylesheet" href="css/blueprint/ie.css" type="text/css" media="screen, projection">
<![endif]-->
<link rel="stylesheet" href="css/application.css" type="text/css"/>
</head>
“application.css”包含我自己的自定义样式。任何人都可以告诉我为什么这些样式没有在IE中呈现?