Skip to content

Instantly share code, notes, and snippets.

@chrisgfortes
Last active August 29, 2015 14:20
Show Gist options
  • Save chrisgfortes/3c4870050b35f69cfde3 to your computer and use it in GitHub Desktop.
Save chrisgfortes/3c4870050b35f69cfde3 to your computer and use it in GitHub Desktop.
Box sizing
// Remove box-Sizing in browser
*, *:before, *:after {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
// Remove border focus browser
*:focus {
outline-style: none;
box-shadow: none;
border-color: transparent;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment