I only want to overwrite if the class .select has only 3 children. How i can do this?
<div class="select">
<div>Some text</div>
<div>Some text</div>
<div>Some text</div>
</div>
<style>
.select div {
font-size:20px;
}
.select:nth-child(3) {
font-size:55px;
}
</style>