CSS Selectors
What is a Selector?
In HTML, This is the element name at the start of the ruleset. It defines the element(s) to be styled. In CSS, it is called as the selector.
p{
color: red; }
In this example,
p is the selector
color is the property
red is the pro...
akshatasag.hashnode.dev3 min read