CSS selectors
It's a way how to select HTML content and style it.
CSS selectors select HTML elements according to their class, id, attributes, type, etc.
1. Universal selector: Selects everything by default.
*{ background-color: #000000;}
It is used to apply CSS...
shaquibkhan.hashnode.dev3 min read