Basic exampleSection
by Dominik Wilk
HTML
<!-- Learn about this code on MDN: https://developer.mozilla.org/en-US/docs/Web/CSS/:only-child -->
<div>
<div class="x">I am an only child.</div>
<a href=""></a>
</div>
<div>
<div>I am the 1st sibling.</div>
<div>I am the 2nd sibling.</div>
<div>I am the 3rd sibling, <div>but this is an only child.</div></div>
</div>
CSS
.x:only-child {
color: red;
}
div {
display: inline-block;
margin: 6px;
outline: 1px solid;
}