Posts tagged ‘렌더링’

IE8의 렌더링 방식

얼마전 IE8이 ACID2 테스트를 통과했다고 블로그를 통해 알렸었는데요. 최근에 올라온 IEBlog 포스트에 따르면 strict 모드에서도 여전히 기존 방식(IE7)으로 렌더링 되게 한다고 합니다. 그 이유인즉슨 기존과의 하위 호환성을 유지하기 위함이라고 합니다. 대신 meta 태그를 이용하여 ACID2 테스트를 통과한 렌더링 엔진으로 렌더링되게 하겠다고 합니다.

급작스러운 변화로 인해 살 원성을 생각하면 나쁘지 않은 방법이라고는 생각되지만 아쉽네요. 어쨌든 방법은 있으니 그나마 다행입니다. 다음은 IEBlog에서 밝힌 렌더링 모드입니다.

  1. “Quirks mode” remains the same, and compatible with current content. – “Quirs mode”는 동일하게 동작
  2. “Standards mode” remains the same as IE7, and compatible with current content. – “Standard mode”는 IE7과 동일하게 동작
  3. If you (the page developer) really want the best standards support IE8 can give, you can get it by inserting a simple <meta> element. – <meta> 태그를 삽입하면 완벽한 표준모드로 렌더링

표준 모드로 렌더링되는 메타 태그는 다음과 같습니다.

<meta http-equiv="X-UA-Compatible" content="IE=8" />