기타

브라우저별 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 브라우저에서만 적용

 

 

'기타' 카테고리의 다른 글

TV녹화 시스템   (0) 2012.11.13
windows7 관리자권한 얻기  (0) 2012.10.08
파이어폭스 동기식 에러  (0) 2012.10.08
메일 블랙리스트 체크  (0) 2012.10.08
네이버_상세검색_조건  (0) 2012.10.08