14 CSS权重深入

<!--
继承说明:
(1)进行样式选择时,不指定标签的话,该选择器是继承来的。
(2)继承的选择器的优先级为0,和标签选择器的优先级无可比性。
-->

<!DOCTYPE html>
<html >
<head>
    <meta charset="UTF-8">
    <title>权重深入</title>
    <style>
        body{
            color: #333;
            font-size: 12px;
        }

        .box #wrap2 #wrap3{
            color: green;
        }

        .box .box2 #wrap3 {
            color: red;
            /*font-size: 24px;*/
        }

    </style>
</head>
<body>
    <div class="box" >
        <div class="box2" >
            <div class="box3" >
                <p>马玉刚</p>
            </div>
        </div>
    </div>
</body>
</html>