I'm trying to teach myself manipulating heavily nested elements/tags using first-child and last-child. I asked another question and I thought I had this fully understood with last-child/first-child, but apparently I'm still not getting it.
I have no idea why the last-child code below isn't working correctly.
div.row div.col-4 div.row:first-child {
background-color: yellow;
}
div.row div.col-4 div.row:last-child {
background-color: blue;
}
<div class="container">
<div class="row">
<div class="col-4">
<div class="row">
<div class="col-4">
<button class="btn btn-primary"><a href="#">some text | <span>red text here</span></a></button>
</div>
</div>
<div class="row">
<div class="col-4">
<button class="btn btn-primary"><a href="#">some text | <span>white text</span></a></button>
</div>
</div>
<div class="row">
<div class="col-4">
<button class="btn btn-primary"><a href="#">some text | <span>white text</span> - this row should be blue</a></button>
</div>
</div>
<a href="#" class="btn btn-primary">Primary Button |<span> yellow text here</span></a>
</div>
<div class="col-4">
<div class="row">
<div class="col-4">
<button class="btn btn-primary"><a href="#">some text | <span>red text here</span></a></button>
</div>
</div>
<div class="row">
<div class="col-4">
<button class="btn btn-primary"><a href="#">some text | <span>white text</span></a></button>
</div>
</div>
<div class="row">
<div class="col-4">
<button class="btn btn-primary"><a href="#">some text | <span>white text</span> - this row should be blue</a></button>
</div>
</div>
<a href="#" class="btn btn-primary">Primary Button |<span> yellow text here</span></a>
</div>
<div class="col-4">
<div class="row">
<div class="col-4">
<button class="btn btn-primary"><a href="#">some text | <span>red text here</span></a></button>
</div>
</div>
<div class="row">
<div class="col-4">
<button class="btn btn-primary"><a href="#">some text | <span>white text</span></a></button>
</div>
</div>
<div class="row">
<div class="col-4">
<button class="btn btn-primary"><a href="#">some text | <span>white text</span> - this row should be blue</a></button>
</div>
</div>
<a href="#" class="btn btn-primary">Primary Button |<span> yellow text here</span></a>
</div>
</div>
</div>