Created
September 19, 2013 10:33
-
-
Save duncanmcdougall/6621663 to your computer and use it in GitHub Desktop.
Favourite CSS Snippets
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* 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