Skip to content

Instantly share code, notes, and snippets.

@axelf
Created August 14, 2023 07:06
Show Gist options
  • Save axelf/8560ebe0d20e2efbb56186df0da62d79 to your computer and use it in GitHub Desktop.
Save axelf/8560ebe0d20e2efbb56186df0da62d79 to your computer and use it in GitHub Desktop.
Reset box-sizing by inheritence
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