Skip to content

Instantly share code, notes, and snippets.

@duncanmcdougall
Created September 19, 2013 10:33
Show Gist options
  • Save duncanmcdougall/6621663 to your computer and use it in GitHub Desktop.
Save duncanmcdougall/6621663 to your computer and use it in GitHub Desktop.
Favourite CSS Snippets
/* http://www.paulirish.com/2012/box-sizing-border-box-ftw/ */
*, *:before, *:after {
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;
*behavior: url(/css/boxsizing.htc); /* IE6/7 Fix - Get from http://github.com/Schepp/box-sizing-polyfill */
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment