[[배운 것들]]
** 크로스브라우징 (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"라면 해당브라우저가 할 수 있는 가장 최신의 모드로 랜더링한다.
'코드 간편모음' 카테고리의 다른 글
경로, 파일명 가져오기 ( feat. split, substr, substring ) (0) | 2021.01.20 |
---|---|
keydown, keyup [event.which & event.shiftKey & event.keyCode] (0) | 2021.01.08 |
input 전체 선택 [live.( ) / if( ){ } / prop( )] (0) | 2020.11.25 |
flag를 활용한 트릭 (0) | 2020.10.30 |
browser detect 코드 (0) | 2020.08.20 |
댓글