网络编程
位置:首页>> 网络编程>> 网页设计>> 创建IE各版本专属CSS方法

创建IE各版本专属CSS方法

作者:dowhatyouwant 来源:5key.net 发布时间:2007-09-27 12:16:00 

标签:css,ie

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]>


0
投稿

猜你喜欢

手机版 网络编程 asp之家 www.aspxhome.com