Skip to content

Instantly share code, notes, and snippets.

@pravashkarki
Last active December 11, 2022 07:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pravashkarki/f2c7d3a5820400bdf9c3d2c601af8748 to your computer and use it in GitHub Desktop.
Save pravashkarki/f2c7d3a5820400bdf9c3d2c601af8748 to your computer and use it in GitHub Desktop.
The CSS universal selector is a selector that matches any element on the page. It is represented by the * symbol, and it can be used to apply styles to all elements on the page. The universal selector can be useful in some cases, but it is generally considered better practice to use more specific selectors to apply styles. This is because the un…
* {
font-family: Arial;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment