CSS Selectors.
Basic Selectors
Universal Selector
Selects all elements. Optionally, it may be restricted to a specific namespace or to all namespaces.
Syntax: * ns|* *|* Example:* will match all the elements of the document.
/* Selects all elements */
* {
col...
syed-ibrahim.hashnode.dev4 min read