Skip to content

Instantly share code, notes, and snippets.

@emrebalaban
Forked from asilbalaban/border-box.css
Last active August 29, 2015 14:10
Show Gist options
  • Save emrebalaban/3eb37eb95e7e4b397b3d to your computer and use it in GitHub Desktop.
Save emrebalaban/3eb37eb95e7e4b397b3d 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