css属性仅适用于即工作即7 ....但不工作,即8?

时间:2010-11-13 10:02:07

标签: css

.sample{
   height:15px;
   width:15px;
   margin:10px;
   padding:10px;
   float:left:

   /*this one apply in ie only */
   border:1px solid #fff;
  # border:2px solid #fff;
  /*this one apply in ie only*/  for ie it treats as 2px.**
}

这个css工作在ie(#border:2px solid #fff)完美。但它不起作用,即8?

感谢。

3 个答案:

答案 0 :(得分:0)

如果这些是IE的特定样式,我建议使用专门针对您正在使用的IE版本的条件样式表。

可在此Sitepoint article找到更多信息。

答案 1 :(得分:0)

你的问题有点不清楚,但这应该有所帮助:

http://www.positioniseverything.net/articles/cc-plus.html

答案 2 :(得分:0)

它完美的IE 7和8。

。样品{      高度:15px的;宽度:15像素;      保证金:10px的;      填充:10px的;      float:left:

 border:1px solid #fff; /* For All browser's */  

 /*this one apply in ie only*/ 

   # border:2px solid green;   /* This one is IE 7 and below */ 

   border:2px solid red\0/; /* this one is IE 8 */

/*this one apply in ie only || for ie it treats as 2px.*/

}