你的IE样式表的顺序是否重要。下面我使用的是标准条件,但出于某种原因,当我从ie.css中的base.css覆盖一个样式时它没有被覆盖。
<!--[if lte IE 8]>
<link rel="stylesheet" type="text/css" href="css/ie.css" />
<![endif]-->
<link type="text/css" rel="stylesheet" href="css/base.css"/>
答案 0 :(得分:5)
是。最后遇到的任何一个类都将覆盖之前的所有类。条件IE样式应该在您的基本样式之后,否则基本样式将覆盖IE样式。
<link type="text/css" rel="stylesheet" href="css/base.css"/>
<!--[if lte IE 8]>
<link rel="stylesheet" type="text/css" href="css/ie.css" />
<![endif]-->
答案 1 :(得分:0)