Co to jest uniwersalny selektor

/* The CSS universal selector (*) matches elements of any type. */

/* Selects all elements */
* {
  color: green;
}
Tiny Coders