Created
October 18, 2014 04:03
-
-
Save jshawl/0b75b12d67b2011924b0 to your computer and use it in GitHub Desktop.
a precess production
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( $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%; | |
} |
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
.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