<div class="a">
<!--[if lte IE 8]> <span class="lte8"> <![endif]-->
<div calss="b">
<div class="c">
</div>
</div>
<!--[if lte IE 8]> </span> <![endif]-->
</div>
<style>
.a .b { }
.a .lte8 .b { }
.a .b .c {}
</style>
위와 같이사용하면 c에 영향미치지 않고 처리할수 있다...
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
'CSS' 카테고리의 다른 글
브라우져별 css, js 처리하기. (0) | 2013.01.02 |
---|---|
익스,파폭,크롬,사파리에서 동작하는 라이트박스 (0) | 2010.07.29 |
css 에서 세로정렬.. (0) | 2009.08.11 |
li아래와 사이 간격 없애기 (0) | 2009.08.07 |
글자 자간.. (0) | 2009.05.20 |
폰트 지정 (0) | 2009.05.20 |
댓글을 달아 주세요