Skip to content

Instantly share code, notes, and snippets.

@ethanmuller
Created May 5, 2016 15:27
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save ethanmuller/96c2d0eb2358777fa20c0c7dd1250e07 to your computer and use it in GitHub Desktop.
Save ethanmuller/96c2d0eb2358777fa20c0c7dd1250e07 to your computer and use it in GitHub Desktop.
/* BOGUS */
input:checked {
/* Adds a 5px border to bottom of this element */
border-bottom: 5px solid green;
}
/* BEAUTIFUL */
input:checked {
/* Adds "selected" indicator to this element */
border-bottom: 5px solid green;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment