Created
December 26, 2018 18:24
-
-
Save jimmieego/2477473947432f22daacfb4a63346a6c to your computer and use it in GitHub Desktop.
Add box sizing to everything
This file contains hidden or 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
| /** | |
| * Add box sizing to everything | |
| * @link http://www.paulirish.com/2012/box-sizing-border-box-ftw/ | |
| */ | |
| *, | |
| *:before, | |
| *:after { | |
| box-sizing: border-box; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment