ie conditional hack
1 <!--[if IE]> 2 <link rel="stylesheet" type="text/css" href="ie-only.css" /> 3 <![endif]--> 4 5 # Embedded CSS 6 <!--[if IE]> 7 <style type="text/css"> 8 #container {font-family: arial,verdana,sans-serif,tahoma;} 9 </style> 10 <![endif]--> 11 12 # The opposite technique, targeting only NON-IE browsers: 13 <!--[if IE]> 14 <link rel="stylesheet" type="text/css" href="ie-only.css" /> 15 <![endif]--> 16 17 # Target specific versions of IE 18 # IE 7 ONLY: 19 <!--[if IE 7]> 20 <link href="IE-7-SPECIFIC.css" rel="stylesheet" type="text/css"> 21 <![endif]--> 22 23 # IE 6 ONLY: 24 <!--[if IE 6]> 25 <link rel="stylesheet" type="text/css" href="IE-6-SPECIFIC.css" /> 26 <![endif]--> 27 28 # IE 5 ONLY: 29 <!--[if IE 5]> 30 <link rel="stylesheet" type="text/css" href="IE-5-SPECIFIC.css" /> 31 <![endif]--> 32 33 # IE 5.5 ONLY: 34 <!--[if IE 5.5000]> 35 <link rel="stylesheet" type="text/css" href="IE-55-SPECIFIC.css" /> 36 <![endif]--> 37 38 # VERSION OF IE VERSION 6 OR LOWER: (I find this one pretty handy) 39 <!--[if lt IE 7]> 40 <link rel="stylesheet" type="text/css" href="IE-6-OR-LOWER-SPECIFIC.css" /> 41 <![endif]-->
sbeskbcae — 19 October / 23:13