브라우저 버전체크 - 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 2,641건 100 페이지
  • RSS
기술자료 목록
661
일반   16427  2009-03-08 09:54  
660
Linux   19915  2009-03-06 02:13  
659
Editor   23663  2009-03-05 20:53 ~ 2017-10-25 12:23  
658
일반   17693  2009-03-04 14:12  
657
일반   17807  2009-03-03 12:10  
656
일반   22849  2009-03-03 12:00  
655
HTML   16793  2009-02-19 07:43  
654
HTML   23345  2009-02-19 02:13 ~ 2015-10-12 00:00  
653
그누보드   16774  2009-02-18 15:10  
652
Search   19147  2009-02-17 08:32  
651
그누보드   12587  2009-02-16 19:30  
650
SNS   19610  2009-02-15 16:05  
649
Search   10897  2009-02-13 18:00  
648
SNS   13033  2009-02-13 16:40  
647
HTML   21765  2009-02-12 22:01  
646
HTML   12877  2009-02-12 21:48  
645
HTML   14027  2009-02-12 21:16  
644
HTML   29902  2009-02-12 20:55  
열람
HTML   16849  2009-02-12 20:08  
642
JavaScript   12345  2009-02-12 19:05 ~ 2009-02-11 00:00  

검색

해피정닷컴 정보

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

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