xhtml

IE 주석

aneyh.c 2012. 2. 16. 17:10
모든 IE 에서만 
<!--[if IE]><link rel="stylesheet" type="text/css" href="ie.css" /><![endif]--> 

IE6 에서만 
<!--[if IE 6]><link rel="stylesheet" type="text/css" href="ie6.css" /><![endif]-->

IE7 에서만 
<!--[if IE 7]><link rel="stylesheet" type="text/css" href="ie7.css" /><![endif]-->

IE7 보다 낮은 버전에서만 (7 제외. less than)
<!--[if lt IE 7]><link rel="stylesheet" type="text/css" href="a.css" /><![endif]--> 

IE7 보다 낮은 버전에서만 (7 포함 less than or equal)
<!--[if lte IE 7]><link rel="stylesheet" type="text/css" href="a.css" /><![endif]-->  

IE7 보다 높은 버전에서만 (7 제외. greater than)
<!--[if gt IE 7]><link rel="stylesheet" type="text/css" href="a.css" /><![endif]-->  

IE7 보다 높은 버전에서만 (7 포함. greater than or equal)
<!--[if gte IE 7]><link rel="stylesheet" type="text/css" href="a.css" /><![endif]-->  

IE 아닌 브라우저만 
<!--[if !IE]><link rel="stylesheet" type="text/css" href="a.css" /><![endif]-->