Important Notice:

Course Content
Float Property
0/1
Z-Index
0/1
CSS object-fit Property
0/1
CSS Visibility Property
0/1
CSS (Chapter 4) M2-R5.1
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>

 

error: Content is protected !!