기타
브라우저별 CSS 적용
Jack Moon
2012. 10. 8. 15:33
ie 6에서만 적용하기
<!--[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]-->
* html 페이지에서만 적용, IE 브라우저에서만 적용