CSS: Universal Selector

The universal selector in CSS is represented by an asterisk (*). It’s a special type selector that matches all elements of any type within the specified scope. Essentially, it selects every HTML element on a web page. Here’s how you can use it:

CSS

/* Selects all elements */
* {
  text-align: center;
  color: blue;
}

In this example, every HTML element will be center-aligned and have blue text.