CSS Selectors
Basic selectors
Universal selector
The CSS universal selector * matches elements of any type.
/* Selects all elements */
* {
color: green;
}
Type selector
The CSS type selector matches elements by node name. In other words, it selects all elements ...
ujjawalmauryaum.hashnode.dev3 min read