Skip to content

Instantly share code, notes, and snippets.

@DioVayne
Created November 20, 2013 08:40
Show Gist options
  • Save DioVayne/7559825 to your computer and use it in GitHub Desktop.
Save DioVayne/7559825 to your computer and use it in GitHub Desktop.
box sizing FTW
*, *:before, *:after {
-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
-moz-box-sizing: border-box; /* Firefox, other Gecko */
box-sizing: border-box; /* Opera/IE 8+ */
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment