-
-
Save j0lvera/4747263 to your computer and use it in GitHub Desktop.
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
// Source: http://ianstormtaylor.com/oocss-plus-sass-is-the-best-way-to-css/ | |
// Sass | |
%separator | |
border-top: 1px solid black | |
hr | |
@extend %separator | |
.separator | |
@extend %separator | |
// Compiled Sass to CSS | |
hr, | |
.separator { | |
border-top: 1px solid black | |
} | |
// Less equivalent | |
.sep { | |
border-top: 1px solid black; | |
} | |
hr, | |
.separator { | |
.sep; | |
} | |
// Compiled Less to CSS | |
.sep { | |
border-top: 1px solid black; | |
} | |
hr, | |
.separator { | |
border-top: 1px solid black; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment