CSS Selectors (lt.13)
Universal selectors (*): When we have to apply a design to the whole web page. It is also known as the wildcard selector. Matches all elements on a page.
ex: * {
color: red;
}
Element selector: It selects a specific type of HTML element. Select a spe...
gopalkdwivedi.hashnode.dev4 min read