본문 바로가기
코드 간편모음

IE용 주석을 이용한 방법 (Conditional comments) & 크로스 브라우징

by 찬찬2 2020. 8. 20.

[[배운 것들]]

** 크로스브라우징 (https://webdir.tistory.com/451)

IE용 주석을 이용한 방법 (Conditional comments)

lt = less than 미만

lte = less than equal to 이하

gt = greater than 초과

gte = greater than equal to 이상

 

<!-- [if IE 7]>

            <link href="ie7.css" type="text/css" rel="stylesheet"/>

<![endif]-->

<!-- [if IE 8]>

            <link href="ie7.css" type="text/css" rel="stylesheet"/>

<![endif]-->

 

[if (gt ie 6)&(lt ie 9)] ie 6 이후버전이고 ie 9 이전버전 이라면

 

[if (ie 6)|(ie 8)] ie 6 이거나 ie 8 이라면

 

[If !(ie 8)] ie 8 이 아니라면

 

<meta http-equiv="X-UA-Compatible" content="IE=edge" />

** IE가 문서를 읽고 랜더링 할 때 원하는 모드로 랜더링을 하게 해준다. 만약 content에 값이 "IE=edge"라면 해당브라우저가 할 수 있는 가장 최신의 모드로 랜더링한다.

댓글