CSS Selectors
CSS selectors define the elements to which a set of CSS rules apply.
ID selector
Selects an element based on the value of its id attribute. There should be only one element with a given ID in a document.
#id-selector {
/* */
}
Class selector
Sele...
nishok19.hashnode.dev1 min read