Skip to content

Instantly share code, notes, and snippets.

@JonAbrams
Last active January 12, 2019 19:21
Show Gist options
  • Save JonAbrams/1bdabf8ae3dc2d132056f1b09cd1c603 to your computer and use it in GitHub Desktop.
Save JonAbrams/1bdabf8ae3dc2d132056f1b09cd1c603 to your computer and use it in GitHub Desktop.
Examples for blog post about pseudo-classes
/* Applies to all input elements that are being focused */
input:focus {
border-color: blue;
}
/* Applies to all buttons that are hovered over */
button:hover {
border-color: red;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment