在以下標記中,我想申請CSS只有與類.box
,其中緊跟在.wrap之後。如果它在<p>
或.wrap
以外的任何其他類之後,我不想選擇它。選擇第一課後,在一個特定的類
<div class="wrap">
<div class="box">Apply style to this box</div>
<p>random</p>
<div class="box">Do not apply style to this box</div>
</div>
我試圖看看鄰接的兄弟選擇器,但似乎並沒有在這種情況下工作。
.wrap + .box{
background: red;
}
的jsfiddle:http://jsfiddle.net/8fjuz7sm/
我不能使用:first-child
,因爲它只能出現一次了。