http://5key.net/blog/article.asp?id=309
IE under the exclusive CSS:
Copy Code code as follows:
<! [If! Ie]>
<link rel= "stylesheet" type= "Text/css" href= "Not-ie.css"/>
<! [endif]>
IE 6 only:
Copy Code code as follows:
<!--[if IE 6]>
<link rel= "stylesheet" type= "Text/css" href= "Ie-6-specific.css"/>
<! [endif]-->
IE 5 only:
Copy Code code as follows:
<!--[if IE 5]>
<link rel= "stylesheet" type= "Text/css" href= "Ie-5-specific.css"/>
<! [endif]-->
IE 5.5 only:
Copy Code code as follows:
<!--[if IE 5.5000]>
<link rel= "stylesheet" type= "Text/css" href= "Ie-55-specific.css"/>
<! [endif]-->
IE6 or Lower:
Copy Code code as follows:
<!--[If LTE IE 7]>
<link rel= "stylesheet" type= "Text/css" href= "Ie-6-or-lower-specific.css"/>
<! [endif]-->
Non ie:
Copy Code code as follows:
<! [If! Ie]>
<link rel= "stylesheet" type= "Text/css" href= "Real-styleshet.css"/>
<! [endif]>