W3C 準拠を損なうことなく IE7 および IE8 にターゲットを絞ったスタイルを実現するには、明示的なブラウザ固有のクラスを使用することが効果的です。方法。これにより、信頼性の低い CSS ハックの必要がなくなります。
に HTML クラスを追加します。ブラウザに基づく要素:
<code class="html"><!doctype html> <!--[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 (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 ハックを使用して 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>
以上がCSS で IE7 および IE8 をターゲットにする方法: 包括的なガイドの詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。