CSS: universal selector (* any tag)

By Xah Lee. Date: .
*

Match any tag name.

/* make everything red */
* {
 color: red;
}