I want to select the first level .box of each one of these three .box siblings, but not their children .box(s). (Does this make sense?)
Here's my markup:
<div class="box">
<div class="box">
test
</div>
</div>
<div class="box">
<div class="box">
test2
</div>
</div>
<div class="box">
<div class="box">
test3
</div>
</div>
How can I perform this selection with CSS?