Skip to content

Instantly share code, notes, and snippets.

@alvarezmauro
Last active May 8, 2018 00:27
Show Gist options
  • Save alvarezmauro/00dc7ebfa9d11f41362eae0319bb9f3e to your computer and use it in GitHub Desktop.
Save alvarezmauro/00dc7ebfa9d11f41362eae0319bb9f3e to your computer and use it in GitHub Desktop.
CSS - Boder Box
/* apply a natural box layout model to all elements, but allowing components to change */
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