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
1 | img:only-child { padding : 10px ; } |
Please login to continue.