문서의 이전 판입니다!


인터넷 익스플로러 (IE; Internet explorer)

운영체제기본 IE최대 IE
98 ie6ie6
xpie6ie8
vistaie8ie9
win7ie8ie11
win8ie10ie11
win8.1ie11ie11~?
  • xp 및IE 6~9의 처형이 시급하다.
  • IE 10 부터 큰 성능 향상이 있었다. 구글 크롬과 거의 비슷한 수준이다.

HTML에서 IE 검출

<!--[if gte IE 8]>
Place content here to target users of Internet Explorer 8 or higher.
<![endif]-->
 
<!--[if lt IE 7]>
Place content here to target users of Internet Explorer 6 or lower (less than 7).
<![endif]-->
 
<![if !IE]>
Place content here to target all users not using Internet Explorer.
<![endif]>
 
<!--[if IE]>
Place content here to target all Internet Explorer users.
<![endif]-->

CSS (Cascading Style Sheet)작업시 유용한 코드..

<!--[if lt IE 7]>  <html class="ie ie6 lte9 lte8 lte7"> <![endif]-->
<!--[if IE 7]>     <html class="ie ie7 lte9 lte8 lte7"> <![endif]-->
<!--[if IE 8]>     <html class="ie ie8 lte9 lte8"> <![endif]-->
<!--[if IE 9]>     <html class="ie ie9 lte9"> <![endif]-->
<!--[if gt IE 9]>  <html> <![endif]-->
<!--[if !IE]><!-->     

이제 css 에는 ..

.ie body {  ... }

이런 식으로 넣으면 된다.

누구나 수정하실 수 있습니다. 위키 사용법 참고하세요.

역링크