当前位置: 代码迷 >> HTML/CSS >> 转载-CSS IE中的if话语
  详细解决方案

转载-CSS IE中的if话语

热度:141   发布时间:2012-11-22 00:16:41.0
转载-CSS IE中的if语句
IE下专属CSS:
<![if !IE]> 
<link rel="stylesheet" type="text/css" href="NOT-IE.css" /> 
<![endif]> 


IE 6 ONLY:
<!--[if IE 6]> 
<link rel="stylesheet" type="text/css" href="IE-6-SPECIFIC.css" /> 
<![endif]--> 


IE 5 ONLY:
<!--[if IE 5]> 
<link rel="stylesheet" type="text/css" href="IE-5-SPECIFIC.css" /> 
<![endif]--> 


IE 5.5 ONLY:
<!--[if IE 5.5000]> 
<link rel="stylesheet" type="text/css" href="IE-55-SPECIFIC.css" /> 
<![endif]--> 


IE6或更低:
<!--[if lte IE 7]> 
<link rel="stylesheet" type="text/css" href="IE-6-OR-LOWER-SPECIFIC.css" /> 
<![endif]--> 


非IE:
<![if !IE]> 
<link rel="stylesheet" type="text/css" href="REAL-STYLESHET.css" /> 
<![endif]>
  相关解决方案