About Lesson
:empty
इस Class द्वारा उन Elements को Target किया जाता हैं जिनमे कोई Content Define नहीं किया गया हैं और जिनका कोई Child Element भी नहीं हैं। Empty का मतलब है आपको Space भी नही देना हैं।
:only-child
यह pseudo class ऐसे element को target करती है जो parent element का एकमात्र child है।
:empty
This class targets those elements in which no content is defined and which do not have any child elements. Empty means you don’t even have to give space.
:only-child
This pseudo class targets an element that is the only child of the parent element.
Example:
<html> <head> <style> p:only-child { background-color:yellow; } </style> </head> <body> <div> <p>This is only child of Div</p> </div> </body> </html> |