Skip to content

Instantly share code, notes, and snippets.

@ryanburgess
Created December 21, 2013 16:13
Show Gist options
  • Select an option

  • Save ryanburgess/8071403 to your computer and use it in GitHub Desktop.

Select an option

Save ryanburgess/8071403 to your computer and use it in GitHub Desktop.
Box sizing CSS
*,
*:after,
*:before {
-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