Pattern:
:only-of-type
Definition:
The :only-of-type pseudo-class matches any element that is the only child of
its type in its parent element.
Examples:
Style every <li> element that is the only child of its type in its parent element
li:only-of-type { height: 100px; }
Please login to continue.