Universal selectors are used to select any element. For example, the rule below will color all HTML elements on a page blue - regardless of their position in the document tree.
* {color: blue; }
Adjacent selectors »