Skip to content

Instantly share code, notes, and snippets.

@pointofpresence
Last active March 31, 2024 13:11
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 pointofpresence/adaacc737ce694a0590bcd7136e7845f to your computer and use it in GitHub Desktop.
Save pointofpresence/adaacc737ce694a0590bcd7136e7845f to your computer and use it in GitHub Desktop.
CSS: Порядок псевдоклассов важен
/* WORKS */
a:hover{ color: red; }
a:active{ color: green; }
/* NOT WORKS */
a:active{ color: green; }
a:hover{ color: red; }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment