0
Any difference between ' :root ' and ' * ' ? Please I need an explanation for each :)
:root{color: red;} *{color: red;}
1 ответ
+ 3
:root is the root of the HTML document. Not the html tag but higher than that. Sort of like the document itself.
* is the universal selector. It selects all elements, including :root.