CSS Selectors 101: Targeting Elements with Precision
Selector
in most basic term a selecctor tell the browser which element to apply CSS rule
Example:
h1 {
color: red;
}
we have
h1 → selector
color: red; → style rule
Why Selector Are Needed
CSS selector are needed because CSS has to know exactl...
dushyantxcode.hashnode.dev3 min read