유효한 CSS로 IE7 및 IE8 타겟팅
한 버전에 대한 수정 사항을 적용하면 작동하지 않을 수 있으므로 CSS로 특정 IE 버전을 타겟팅하는 것은 어려울 수 있습니다. 다른 사람을 위해. 이 가이드에서는 유효한 CSS로 IE7 및 IE8을 타겟팅하는 두 가지 방법, 즉 해킹 없이 HTML 및 CSS를 사용하는 방법과 CSS "핵"을 사용하는 방법을 간략하게 설명합니다.
핵 없이 명시적 타겟팅
해킹을 방지하려면 브라우저 고유 클래스를 요소를 선택하고 나중에 브라우저를 기반으로 선택하세요. 예:
<code class="html"><!doctype html> <!--[if IE]><![endif]--> <!--[if lt IE 7 ]> <html lang="en" class="ie6"> <![endif]--> <!--[if IE 7 ]> <html lang="en" class="ie7"> <![endif]--> <!--[if IE 8 ]> <html lang="en" class="ie8"> <![endif]--> <!--[if IE 9 ]> <html lang="en" class="ie9"> <![endif]--> <!--[if (gt IE 9)|!(IE)]><!--><html lang="en"><!--<![endif]--></code>
그런 다음 원하는 브라우저 버전에 CSS 타겟팅을 구체적으로 적용합니다.
<code class="css">.ie6 body { border:1px solid red; } .ie7 body { border:1px solid blue; }</code>
CSS Hacks를 사용한 타겟팅
To 핵을 사용하는 IE 버전을 대상으로 하려면 다음 문자를 사용하십시오.
예:
<code class="css">body { border:1px solid red; /* standard */ border:1px solid blue; /* IE8 and below */ *border:1px solid orange; /* IE7 and below */ _border:1px solid blue; /* IE6 */ }</code>
Targeting IE10
IE10은 조건문을 인식하지 못하므로 "ie10을 추가하세요. " 클래스를 다음을 사용하는 요소:
<code class="html"><!doctype html> <html lang="en"> <!--[if !IE]><!--><script>if (/*@cc_on!@*/false) {document.documentElement.className+=' ie10';}</script><!--<![endif]--> <head></head> <body></body> </html></code>
위 내용은 유효한 CSS로 IE7 및 IE8을 타겟팅하려면 어떻게 해야 합니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!