Skip to content

Instantly share code, notes, and snippets.

@juwanpetty
Last active August 7, 2020 20:23
Show Gist options
  • Save juwanpetty/200276238d7195ee9888ce8a72bc9807 to your computer and use it in GitHub Desktop.
Save juwanpetty/200276238d7195ee9888ce8a72bc9807 to your computer and use it in GitHub Desktop.
Makes building CSS layouts easier
html {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
*, *:before, *:after {
-webkit-box-sizing: inherit;
-moz-box-sizing: inherit;
box-sizing: inherit;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment