Skip to content

Instantly share code, notes, and snippets.

@jshawl
Created October 18, 2014 04:03
Show Gist options
  • Save jshawl/0b75b12d67b2011924b0 to your computer and use it in GitHub Desktop.
Save jshawl/0b75b12d67b2011924b0 to your computer and use it in GitHub Desktop.
a precess production
@mixin box-sizing( $value ){
-webkit-box-sizing:$value;
-moz-box-sizing:$value;
box-sizing:$value;
}
.shape{
@include box-sizing('border-box');
border:1px solid red;
height:100px;
width:100px;
}
.square{
@extend .shape;
color:red;
}
.circle{
@extend .shape;
border-radius:100%;
}
.shape, .square, .circle {
-webkit-box-sizing: "border-box";
-moz-box-sizing: "border-box";
box-sizing: "border-box";
border: 1px solid red;
height: 100px;
width: 100px;
}
.square {
color: red;
}
.circle {
border-radius: 100%;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment