日期:2014-05-18 浏览次数:20541 次
<html>
    <head>
        <title></title>
    <style type="text/css">
    #div1
    {
        width:500px;
        border:solid 1px black;
    }
    
    #div1 > DIV
    {
        color:Red;    
    }
    
    </style>
    </head>
    <body>
    <div id="div1">
    here is parent
    <div id="childDiv1">childDiv1
        <div id="childDiv1-1">
            childDiv1-1
        </div>
    </div>
    <div id="childDiv2">childDiv2</div>
    <div id="childDiv3">childDiv3</div>
    <div id="childDiv4">childDiv4</div>
    </div>
    
    </body>
</html>
    #div1 > DIV
    {
        color:Red;    
    }
    #div1  DIV
    {
        color:Red;    
    }
    #childDiv1 > div {
        color:Red;    
    }
------解决方案--------------------
我也发现过这个问题。最终也没知道原因