创建IE各版本专属CSS IE中的if语句

?id=309 
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]> 

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wzdxyw.html