亚洲乱码中文字幕综合,中国熟女仑乱hd,亚洲精品乱拍国产一区二区三区,一本大道卡一卡二卡三乱码全集资源,又粗又黄又硬又爽的免费视频

創(chuàng)建IE各版本專屬CSS IE中的if語(yǔ)句

 更新時(shí)間:2007年09月27日 19:26:56   作者:  
http://5key.net/blog/article.asp?id=309 
IE下專屬CSS:
復(fù)制代碼 代碼如下:

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


IE 6 ONLY:
復(fù)制代碼 代碼如下:

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


IE 5 ONLY:
復(fù)制代碼 代碼如下:

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

IE 5.5 ONLY:
復(fù)制代碼 代碼如下:

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


IE6或更低:
復(fù)制代碼 代碼如下:

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


非IE:
復(fù)制代碼 代碼如下:

<![if !IE]> 
<link rel="stylesheet" type="text/css" href="REAL-STYLESHET.css" /> 
<![endif]> 

相關(guān)文章

最新評(píng)論