차이

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

차이 보기로 링크

양쪽 이전 판이전 판
다음 판
이전 판
tech:ie [2015/02/16 01:01] V_Ltech:ie [2016/07/12 09:26] (현재) – 바깥 편집 127.0.0.1
줄 1: 줄 1:
 +{{tag>ie 인터넷 익스플로러}}
 ======인터넷 익스플로러 (IE; Internet explorer)====== ======인터넷 익스플로러 (IE; Internet explorer)======
 +
 +윈도에 기본으로 포함되어 있다. 그런데 생각보다 업데이트 없이 그대로 쓰는 사람들이 많다. 
 +
  
  
-^운영체제^기본 IE^최대 IE^+^운영체제^기본 IE((윈도설치 시 같이 깔리는 것))^최대 IE((설치할 수 있는 최신판))^
 |98| ie6|ie6| |98| ie6|ie6|
 |xp|ie6|ie8| |xp|ie6|ie8|
줄 10: 줄 14:
 |win8.1|ie11|ie11~?| |win8.1|ie11|ie11~?|
  
-  * xp (ie6~8) 처형이 시급하다. +  * xp 및IE 6~9의 처형이 시급하다. 
-  * IE 10 부터 큰 성능 향상이 있었다. [[tech:google_chrome]]과 거의 비슷한 수준이다.+  * IE 10 부터 큰 성능 향상이 있었다. [[tech:google_chrome|구글 크롬]]과 거의 비슷한 수준이다.
  
 +  * [[tech:css_media_query]]는 IE9 부터 지원한다.
 +
 +===== HTML에서 IE 검출=====
 +
 +실질적으로는 주석문 안에 내용이 들어 있기 때문에 IE에서만 이것을 인식한다. 세번째의 IE아닌 경우 표시되는 조건문은 주석안에 내용이 들어 있는 것이 아님을 잘 보기 바란다. 
  
 <file html> <file html>
 <!--[if gte IE 8]> <!--[if gte IE 8]>
-<p>You're using a recent version of Internet Explorer.</p>+Place content here to target users of Internet Explorer 8 or higher.
 <![endif]--> <![endif]-->
  
 <!--[if lt IE 7]> <!--[if lt IE 7]>
-<p>Hm. You should upgrade your copy of Internet Explorer.</p>+Place content here to target users of Internet Explorer 6 or lower (less than 7).
 <![endif]--> <![endif]-->
  
 <![if !IE]> <![if !IE]>
-<p>You're not using Internet Explorer.</p>+Place content here to target all users not using Internet Explorer.
 <![endif]> <![endif]>
 +
 +<!--[if IE]>
 +Place content here to target all Internet Explorer users.
 +<![endif]-->
 </file> </file>
  
 +[참조](http://www.mediacollege.com/internet/html/detect/detect-ie.html)
 +
 +====응용====
  
 [[CSS]]작업시 유용한 코드.. [[CSS]]작업시 유용한 코드..
  
-<file HTML>+<file html>
 <!--[if lt IE 7]>  <html class="ie ie6 lte9 lte8 lte7"> <![endif]--> <!--[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 7]>     <html class="ie ie7 lte9 lte8 lte7"> <![endif]-->
줄 40: 줄 56:
 </file> </file>
  
 +이제 css 에는 ..
 +
 +<file css>
 +.ie body {  ... }
 +</file> 
 +
 +이런 식으로 넣으면 된다.
  
 ^  누구나 수정하실 수 있습니다. [[http://vaslor.net/syntax|위키 사용법]] 참고하세요.  ^ ^  누구나 수정하실 수 있습니다. [[http://vaslor.net/syntax|위키 사용법]] 참고하세요.  ^
  
-{{tag>ie 인터넷 익스플로러}}