我遇到困难
<!--[if !IE]>
上班。我想知道是否是因为我的文件中有这个
<!doctype html>
<!--[if lt IE 7]> <html class="ie6 oldie"> <![endif]-->
<!--[if IE 7]> <html class="ie7 oldie"> <![endif]-->
<!--[if IE 8]> <html class="ie8 oldie"> <![endif]-->
<!--[if gt IE 8]><!-->
<html class="">
<!--<![endif]-->
当我添加
<!--[if !IE]><!-->
<link type="text/css" rel="stylesheet" href="/stylesheets/no-ie.css" />
<!--<![endif]-->
出于某种原因无法连接到我的标头。但是,如果我添加
<!--[if !IE]><!-->
<style>
All my css in here
</style>
<!--<![endif]-->
到实际的html页面(在标题中)。有什么建议?干杯
更新我的问题
好的,当我删除时,
<!-->
我只检查了正在运行的IE,但现在回到FF中,no-ie.css也已应用于FF。因此,我重新添加<!-->
了/并删除了/(并将其添加到主模板中,以便cms不会将其重新添加回去),所有这些都在FF中恢复正常,但是现在将样式表应用于IE!所以我尝试了
<!--[if IE]>
<link type="text/css" rel="stylesheet" href="https://stackoverflow.com/stylesheets/no-ie.css">
<![endif]-->
和
<!--[if !IE]> -->
<link type="text/css" rel="stylesheet" href="/stylesheets/no-ie.css">
<!-- <![endif]-->
那没有用。基本上我试图让这个页面工作http://css-tricks.com/examples/ResponsiveTables/responsive.php但移动到CSS样式表。当然,这必须很简单。我想念什么?如果不需要,我宁愿不使用JQuery。干杯
<!-->
<!--[if !IE]>