Created
July 28, 2014 14:20
-
-
Save fieldoffice/4e3ae79c9db6fbc4607a to your computer and use it in GitHub Desktop.
Sass 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 box-sizing($box-model) { | |
-webkit-box-sizing: $box-model; | |
-moz-box-sizing: $box-model; | |
box-sizing: $box-model; | |
} | |
*, | |
*:after, | |
*:before { | |
@include box-sizing(border-box); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment