Skip to content

Instantly share code, notes, and snippets.

@rodrigoea
Created January 24, 2014 13:43
Show Gist options
  • Save rodrigoea/8597469 to your computer and use it in GitHub Desktop.
Save rodrigoea/8597469 to your computer and use it in GitHub Desktop.
The box-sizing property allows you to define certain elements to fit an area in a certain way.
*, *: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