ホームページ > 記事 > ウェブフロントエンド > IE11のCSSハックを解決する方法
今回はIE11のCSSハックを解決する方法と、IE11のCSSハックを解決するための注意点についてお届けします。実際の事例を見てみましょう。
<script> // 针对IE10 if(/*@cc_on!@*/false){ document.documentElement.className+=' ie'+document.documentMode; } // 针对IE11及非IE浏览器, // 因为IE11下document.documentMode为11,所以html标签上会加ie11样式类; // 而非IE浏览器的document.documentMode为undefined,所以html标签上会加ieundefined样式类。 if(/*@cc_on!@*/true){ document.documentElement.className+=' ie'+document.documentMode; } <script />
<style> .ie10.testclass{ color:red } .ie11.testclass{ color:blue } .ieundefined.testclass{ color:green } <style />
この記事の事例を読んだ後は、この方法を習得したと思います。さらに興味深い情報については、php 中国語 Web サイトその他の関連記事に注目してください。
関連書籍:
axios Promise ベースの HTTP リクエスト クライアントの使用方法
以上がIE11のCSSハックを解決する方法の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。