Skip to content

Instantly share code, notes, and snippets.

@florentb
Created July 16, 2014 19:44
Show Gist options
  • Save florentb/b856367ef420e10e12c2 to your computer and use it in GitHub Desktop.
Save florentb/b856367ef420e10e12c2 to your computer and use it in GitHub Desktop.
Easier to change the box-sizing in plugins or other components that leverage other behavior
html {
box-sizing: border-box;
}
*, *:before, *:after {
box-sizing: inherit;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment