Skip to content

Instantly share code, notes, and snippets.

@smonn
Last active August 29, 2015 13:57
Show Gist options
  • Save smonn/9504303 to your computer and use it in GitHub Desktop.
Save smonn/9504303 to your computer and use it in GitHub Desktop.
/* apply a natural box layout model to all elements */
*, *:before, *:after {
-moz-box-sizing: border-box;
-webkit-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