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