Skip to content

Instantly share code, notes, and snippets.

@kaesetoast
Created March 24, 2014 13:33
Show Gist options
  • Save kaesetoast/9740144 to your computer and use it in GitHub Desktop.
Save kaesetoast/9740144 to your computer and use it in GitHub Desktop.
HTML, CSS, JS tricks
/* 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