IEスタイル対応書き方

1478 ワード

1、第一の書き方
利用htmlごとにclassを書きます
<!DOCTYPE html>
<!--[if lt IE 7]> <html class="ie ie6 lt-ie9 lt-ie8 lt-ie7"><![endif]-->
<!--[if IE 7]><html class="ie ie7 lt-ie9 lt-ie8"><![endif]-->
<!--[if IE 8]><html class="ie ie8 lt-ie9"><![endif]-->
<!--[if gt IE 8]><!--><html><!--<![endif]-->
<head>
...

1、二番目の書き方
やはりを使用してdomにスタイルを個別に導入します.
    <!--[if lt IE 10 ]>
        <link rel="stylesheet" type="text/css" media="all" href="/css/ie-hacks.css" />
    <![endif]-->

    <!--[if lt IE 10]>
        <script src="/js/lib/placeholder-iehack.js"></script>
    <![endif]-->