Guide To CSS Selector
Basic selectors
1. Universal Selector:
The universal selector (*) selects all HTML elements on the page.
Example-
The CSS rule below will affect every HTML element on the page:
/* asterisk symbol means apply to all */
*{
margin: 0;
padding: ...
nikhilkhetan.hashnode.dev3 min read