强制IE忽略其他css样式表

时间:2013-09-22 12:02:13

标签: css internet-explorer

我已经完成了我正在处理的网站,但IE不接受我的一些动画。

我知道我可以指定一个仅限IE的表格:

<!--[if IE]>
    <link rel="stylesheet" type="text/css" href="path/to/stylesheet.css"></link>
<![endif]-->

然而IE仍然运行其他样式表,有没有人知道强制IE忽略css样式表的方法?

的问候, 吉米

2 个答案:

答案 0 :(得分:1)

由于CSS代表级联样式表,这些条件表的想法是覆盖“正常的CSS”

<link rel="stylesheet" type="text/css" href="path/to/normalstylesheet.css"></link>
<!--[if IE]>
    <link rel="stylesheet" type="text/css" href="path/to/iestylesheet.css"></link>
<!--[endif]-->

前者中的所有内容都将由后一个样式表覆盖。如果您有其他特定原因可以省略某些内容,但您始终可以使用此功能。

<!--[if !IE]-->
    <link rel="stylesheet" type="text/css" href="path/to/notiestylesheet.css"></link>
<!--[endif]-->

答案 1 :(得分:0)

你可以使用它,

<!--[if !IE]-->
  IE ignores this
<!--[endif]-->