Skip to content

Instantly share code, notes, and snippets.

@frankyonnetti
Created May 23, 2021 20:26
Show Gist options
  • Select an option

  • Save frankyonnetti/841c58fd83a1abe7b6c4b1d37d1a8148 to your computer and use it in GitHub Desktop.

Select an option

Save frankyonnetti/841c58fd83a1abe7b6c4b1d37d1a8148 to your computer and use it in GitHub Desktop.
CSS - selector performance #css
  1. ID, e.g. #header
  2. Class, e.g. .promo
  3. Type, e.g. div
  4. Adjacent sibling, e.g. h2 + p
  5. Child, e.g. li > ul
  6. Descendant, e.g. ul a
  7. Universal, i.e. *
  8. Attribute, e.g. [type="text"]
  9. Pseudo-classes/-elements, e.g. a:hover
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment