Created
February 7, 2014 11:58
-
-
Save Anahkiasen/8861447 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
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
// ---- | |
// Sass (v3.3.0.rc.2) | |
// Compass (v1.0.0.alpha.17) | |
// ---- | |
@import "compass"; | |
$debug-browser-support: true; | |
body { | |
@include box-sizing(border-box); | |
} |
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
body { | |
/* Capability css3-boxsizing is prefixed with -moz because 15.12493% of users need it which is more than the threshold of 0.01%. */ | |
/* Creating new -moz context. */ | |
-moz-box-sizing: border-box; | |
/* Capability css3-boxsizing is not prefixed with -ms because 0% of users are affected which is less than the threshold of 0.01. */ | |
/* Capability css3-boxsizing is not prefixed with -o because 0% of users are affected which is less than the threshold of 0.01. */ | |
/* Capability css3-boxsizing is prefixed with -webkit because 2.78065% of users need it which is more than the threshold of 0.01%. */ | |
/* Creating new -webkit context. */ | |
-webkit-box-sizing: border-box; | |
box-sizing: border-box; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment