Skip to content

Instantly share code, notes, and snippets.

@robertmagnusson
Created February 3, 2014 08:57
Show Gist options
  • Save robertmagnusson/8780726 to your computer and use it in GitHub Desktop.
Save robertmagnusson/8780726 to your computer and use it in GitHub Desktop.
Border-box shorthand
*, *:before, *:after {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment