브라우저 버전체크 - IE Conditional Comments 필터링 > 기술자료 | 해피정닷컴

브라우저 버전체크 - IE Conditional Comments 필터링 > 기술자료

본문 바로가기

사이트 내 전체검색

브라우저 버전체크 - IE Conditional Comments 필터링 > 기술자료

HTML 브라우저 버전체크 - IE Conditional Comments 필터링

페이지 정보


본문

W3C의 규격에 의거하여 CSS 코드를 작성하더라도, 각각의 웹 브라우저마다 웹 페이지가 다르게 출력되는 문제가 있습니다. 이러한 문제는 브라우저들이 CSS 규격을 조금씩 서로 다르게 해석하고 출력할 뿐더러, 몇몇 규격은 전혀 출력하지 못하기 때문에 발생합니다.

이처럼 브라우저가 CSS를 W3C 규격과 다르게 출력하거나, 전혀 출력하지 못하는 문제를 CSS 출력 버그(CSS Rendering Bug)라고 합니다. CSS 출력 버그는 표준을 준수하여 웹 페이지를 제작할 때 가장 큰 걸림돌이 됩니다. W3C 규격 외에도 각각의 웹 브라우저들의 CSS 출력 현황에 대해서도 이해해야 하며, 이러한 버그들을 잡는 방법까지 파악해야 하기 때문입니다.

IE7, FF1~2, Opera9, Safari처럼 최근에 출시된 웹 브라우저들은 W3C 규격에 맞춰서 CSS를 출력합니다. 문제는 IE6, NN7 이하의 오래된 브라우저들이죠. 특히 높은 브라우저 시장 점유율을 기록중인 IE6 브라우저의 CSS 출력 버그들이 큰 문제입니다.

이러한 CSS 출력 버그들을 CSS Hack과 Filtering으로 대처할 수 있습니다. 예전에는 CSS Hack을 많이 사용했으나, IE7이 출시된 이후로는 CSS Filtering을 주로 사용합니다. 특히 사용이 간단하고 MS에서 추천하는 방법인 IE Conditional Comments Filtering(IE CC-필터링)을 가장 많이 사용합니다.

자세히 보시면 보통의 HTML 주석문 에서 조금 추가된 형태라는 걸 알수 있겠죠?
if 조건문이 참이면 안의 내용이 유효하다는 뜻입니다. 즉 주석으로 처리되지 않고
화면에 나타나거나 실행됩니다. 반대로 조건에 맞지 않으면 그냥 주석으로 처리되겠죠.

IE 5.0 이상에서만 작동합니다. 5.0 미만의 버전에서는 그냥 주석으로 인식합니다.


활용예
<!--[if IE]>You are using Internet Explorer.<![endif]-->
<![if !IE]>You are not using Internet Explorer.<![endif]>

<!--[if IE 7]>Welcome to Internet Explorer 7!<![endif]-->
<!--[if !(IE 7)]>You are not using version 7.<![endif]-->

<!--[if gte IE 7]>You are using IE 7 or greater.<![endif]-->
<!--[if (IE 5)]>You are using IE 5 (any version).<![endif]-->
<!--[if (gte IE 5.5)&(lt IE 7)]>You are using IE 5.5 or IE 6.<![endif]-->
<!--[if lt IE 5.5]>Please upgrade your version of Internet Explorer.<![endif]-->

<!--[if true]>You are using an <em>uplevel</em> browser.<![endif]-->
<![if false]>You are using a <em>downlevel</em> browser.<![endif]>

<!--[if true]><![if IE 7]>This nested comment is displayed in IE 7. <![endif]><![endif]-->


조건문에 사용할 수 있는 요소

Item Example Comment
IE [if IE] The only currently supported feature is the string "IE", corresponding to Internet Explorer.
value [if IE 7] An integer or floating point numeral corresponding to the version of the browser. Returns a Boolean value of true if the version number matches the browser version. For more information, see Version Vectors.
! [if !IE] The NOT operator. This is placed immediately in front of the feature, operator, or subexpression to reverse the Boolean meaning of the expression.
lt [if lt IE 5.5] The less-than operator. Returns true if the first argument is less than the second argument.
lte [if lte IE 6] The less-than or equal operator. Returns true if the first argument is less than or equal to the second argument.
gt [if gt IE 5] The greater-than operator. Returns true if the first argument is greater than the second argument.
gte [if gte IE 7] The greater-than or equal operator. Returns true if the first argument is greater than or equal to the second argument.
( ) [if !(IE 7)] Subexpression operators. Used in conjunction with boolean operators to create more complex expressions.
& [if (gt IE 5)&(lt IE 7)] The AND operator. Returns true if all subexpressions evaluate to true
| [if (IE 6)|(IE 7)] The OR operator. Returns true if any of the subexpressions evaluates to true.
true [if true] Always evaluates to true.
false [if false] Always evaluates to false.


참고자료
http://msdn.microsoft.com/en-us/library/ms537512.aspx
http://hooney.net/2007/08/27/451/
http://www.quirksmode.org/css/condcom.html

댓글목록

등록된 댓글이 없습니다.


Total 200건 8 페이지
  • RSS
기술자료 목록
60
HTML   13298  2009-04-24 09:09 ~ 2009-09-09 00:00  
59
HTML   14435  2009-04-23 20:15  
58
HTML   26215  2009-04-23 00:36  
57
HTML   14560  2009-04-03 20:08  
56
HTML   32487  2009-04-03 20:05  
55
HTML   19170  2009-03-12 09:16 ~ 2015-10-13 00:00  
54
HTML   16790  2009-02-19 07:43  
53
HTML   23339  2009-02-19 02:13 ~ 2015-10-12 00:00  
52
HTML   21763  2009-02-12 22:01  
51
HTML   12875  2009-02-12 21:48  
50
HTML   14025  2009-02-12 21:16  
49
HTML   29899  2009-02-12 20:55  
열람
HTML   16846  2009-02-12 20:08  
47
HTML   17639  2009-01-04 03:56  
46
HTML   15776  2009-01-04 03:51  
45
HTML   27634  2009-01-04 03:43 ~ 2019-09-19 15:11  
44
HTML   24506  2009-01-04 03:11 ~ 2009-01-04 00:00  
43
HTML   16768  2009-01-04 02:43  
42
HTML   14551  2008-09-22 17:38  
41
HTML   12804  2008-08-06 15:14  

검색

해피정닷컴 정보

회사소개 회사연혁 협력사 오시는길 서비스 이용약관 개인정보 처리방침

회사명: 해피정닷컴   대표: 정창용   전화: 070-7600-3500   팩스: 042-670-8272
주소: (34368) 대전시 대덕구 대화로 160 대전산업용재유통단지 1동 222호
개인정보보호책임자: 정창용   사업자번호: 119-05-36414
통신판매업신고: 제2024-대전대덕-0405호 [사업자등록확인]  
Copyright 2001~2024 해피정닷컴. All Rights Reserved.