A Quick Note Of CSS Selector
CSS selectors
CSS selectors define the elements to which you want to apply specific CSS rules.
Universal selectors
The CSS universal selector (*) selects all elements in the document.
Syntax
* { style properties }
Example
css
* {
background-...
avicreation.hashnode.dev4 min read