Showing posts with label stylesheet. Show all posts
Showing posts with label stylesheet. Show all posts

How To Create an IE-Only Stylesheet

Target ALL VERSIONS of IE

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

Target everything EXCEPT IE

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