Skip to content

Instantly share code, notes, and snippets.

@stefano-bortolotti
Last active December 25, 2015 10:59
Show Gist options
  • Save stefano-bortolotti/6965196 to your computer and use it in GitHub Desktop.
Save stefano-bortolotti/6965196 to your computer and use it in GitHub Desktop.
use border box, a better layout model
* {
-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