.firstRow div:nth-child(2) {
background: green;
width: 40px;
height: 100px;
border: 1px solid black;
}
<div class="firstRow"> <!-- parent -->
<div> <!-- this is nth-child(1) -->
<p>test.</p>
<p>test 2.</p>
</div>
<div></div> <!-- this is nth-child(2) -->
</div>