About Lesson
Descendent Selector
इस combinator को सबसे अधिक use किया जाता है। Descendant selector अपने parent tag के सभी child को target करने के लिए use किया जाता है। फिर वो child tag अपने parent tag के कितने भी अंदर हो फिर भी उसे target किया जा सकता है।
Descendent Selector
This combinator is used the most. Descendant selector is used to target all the children of its parent tag. Then, no matter how inside the child tag is inside its parent tag, it can still be targeted.
Example:
<html> <head> <style> #myDiv li { background:lime; } </style> </head> <body id=”myDiv”> <div> <ul> <li>First Item</li> <li>Second Item</li> <li>Third Item</li> </ul> </div> </body> </html> |