차이

문서의 선택한 두 판 사이의 차이를 보여줍니다.

차이 보기로 링크

양쪽 이전 판이전 판
다음 판
이전 판
tech:ie [2014/04/12 23:05] V_Ltech:ie [2016/07/12 09:26] (현재) – 바깥 편집 127.0.0.1
줄 1: 줄 1:
 +{{tag>ie 인터넷 익스플로러}}
 +======인터넷 익스플로러 (IE; Internet explorer)======
 +
 +윈도에 기본으로 포함되어 있다. 그런데 생각보다 업데이트 없이 그대로 쓰는 사람들이 많다. 
 +
 +
 +
 +^운영체제^기본 IE((윈도설치 시 같이 깔리는 것))^최대 IE((설치할 수 있는 최신판))^
 +|98| ie6|ie6|
 +|xp|ie6|ie8|
 +|vista|ie8|ie9|
 +|win7|ie8|ie11|
 +|win8|ie10|ie11|
 +|win8.1|ie11|ie11~?|
 +
 +  * xp 및IE 6~9의 처형이 시급하다.
 +  * IE 10 부터 큰 성능 향상이 있었다. [[tech:google_chrome|구글 크롬]]과 거의 비슷한 수준이다.
 +
 +  * [[tech:css_media_query]]는 IE9 부터 지원한다.
 +
 +===== HTML에서 IE 검출=====
 +
 +실질적으로는 주석문 안에 내용이 들어 있기 때문에 IE에서만 이것을 인식한다. 세번째의 IE아닌 경우 표시되는 조건문은 주석안에 내용이 들어 있는 것이 아님을 잘 보기 바란다. 
 +
 +<file html>
 +<!--[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]-->
 +</file>
 +
 +[참조](http://www.mediacollege.com/internet/html/detect/detect-ie.html)
 +
 +====응용====
 +
 +[[CSS]]작업시 유용한 코드..
 +
 +<file html>
 +<!--[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]><!-->     
 +</file>
 +
 +이제 css 에는 ..
 +
 +<file css>
 +.ie body {  ... }
 +</file> 
 +
 +이런 식으로 넣으면 된다.
 +
 +^  누구나 수정하실 수 있습니다. [[http://vaslor.net/syntax|위키 사용법]] 참고하세요.  ^
 +