About Lesson
:root
यह class document के root element को target करने के लिए use की जाती है। किसी भी HTML document में root element हमेशा element ही होता है।
:root
This class is used to target the root element of the document. The root element is always an element in any HTML document.
Example:
<html> <head> <style> :root { background-color:lime; color:black; } </style> </head> <body> <h1>Best Hindi Tutorials</h1> </body> </html> |