Only Child
About
The :only-child
pseudo-class matches an element if it's the only child of its parent. It's the short form of :first-child:last-child
.
Only child
The selector matches the p
element as it's the only child of its parent.
Only child
Multiple children
The selector doesn't match any element as there are multiple children.
First child
Second child
Third child