selectivizr.js选择工作了ie8

时间:2017-06-07 12:55:00

标签: css internet-explorer-8 selectivizr

这是我今天的工作......那个css:nth-​​child(单数){background-color:red;}不能在lte ie8中工作

<!DOCTYPE html>

<head>
    <link rel="stylesheet" href="style/selectivizr.css" type="text/css" />
    <meta charset="UTF-8">
    <title>Document</title>
    <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js"></script>
    <!--[if (gte IE 6)&(lte IE 8)]>
        <script type="text/javascript" src="js/selectivizr-min.js"></script>
        <noscript>
            <style> p.odd {background-color:red;}</style>
        </noscript>
    <![endif]-->
</head>
<body>
<div id="container">
    <h1> title </h1>
    <p> 단락 요소입니다. 홀</p>
    <p class="odd"> 단락 요소입니다. 짝</p>
    <p> 단락 요소입니다. 홀</p>
    <p class="odd"> 단락 요소입니다. 짝</p>
</div>
</body>

0 个答案:

没有答案