<!--[if ie 6]>
<style type="text/css">
html {
overflow: scroll;
overflow-x: auto;
}
</style>
<![endif]-->
<!--[if ie 7]>
<style type="text/css">....</style>
<![endif]-->
gt = selects greater than 보다큰 : if gt IE 6 -> 현재버전 > 6
lt = selects less than 보다 작은 : if lt IE 6 -> 현재버전 < 6
gte = selects greater than or equal to 같거나 큰 : if gte IE 6 -> 현재버전 >= 6
lte = selects less than or equal to 같거나 작은 : if lte IE 6 -> 현재버전 <= 6
ex)
<!--[if gtie 7]> <![endif]-->,
<!--[if ltie 7]> <![endif]-->,
<!--[if gteie 7]> <![endif]-->,
<!--[if lte ie 7]> <![endif]-->,
<!--[if lte IE 6]>
<link href="../c_css/main6.css" rel="stylesheet" type="text/css" />
<![endif]-->
'html / javascript / css' 카테고리의 다른 글
meta 태그 (0) | 2010.01.11 |
---|---|
[HTML] IR(Image Replacement) 이미지 대체 (2) | 2009.12.18 |
구버젼 ie 백그라운드 캐쉬 (4) | 2009.11.16 |
zoom 스타일 제어시 Flash Object가 사라지는 버그 (3) | 2009.11.13 |
동적 스타일 - 자바스크립트로 CSS 다루기 (0) | 2009.10.09 |