Created
March 25, 2015 05:33
-
-
Save nilghe/502b225dece925608cbc to your computer and use it in GitHub Desktop.
Simple SASS mixin for box sizing
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
@mixin border-box() { | |
-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