2

スニペットでは、3 番目h2は css の影響を受けるべきではありませんが、それはなぜですか?

.a > div { color: blue; text-align: center; }
<div class="a">
    <h2>Title</h2>
    <div>
        <h2>this shoud be center and blue</h2>
        <div>
            <h2>this should Not be center or blue</h2>
        </div>
    </div>
</div>

4

2 に答える 2