The Most Used CSS Selector!
1. Universal Selector In CSS
It selects all the elements on the pages. Universal selector starts with * (it means Selects all elements).
Example:
* {
background-color: #000000;
color: #fff;
font-size: 20px;
}
It will m...
mehedihasan.hashnode.dev3 min read