CSS Selectors
CSS selectors define the elements to which a set of CSS rules apply.
Basic Selectors:
1.Element Selector:
An element selector selects the HTML elements based on the element name.
Example:
p{
color:blue;
}
In the above example, p is the element select...
htmlcssjs.hashnode.dev6 min read