CSS Selectors
what is selector
In CSS, selectors are patterns used to select the element(s) you want to style
h1{
color: blue;
background-color:yellow;
}
p{
color: red;
}
in above CSS code h1 and p are selectors . also called as type selectors
Universal Sele...
shailraj24.hashnode.dev3 min read