Created
September 24, 2014 12:41
-
-
Save michaek/976b07673c867dfef5c9 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
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
<p>I want "a" to work the same as "b"</p> | |
<p> | |
<a>a</a> | |
/ | |
<b>b</b> | |
</p> | |
<p>I want "h" to work the same as "f"</p> | |
<p> | |
<e><f><g>e f g</g></f></e> | |
/ | |
<e><h><g>e h g</g></h></e> | |
</p> | |
<p>I want "l m" to work the same as "j" - but I don't know the relative source orders!</p> | |
<p> | |
<i><j><k>i j k</k></j></i> | |
/ | |
<l><i><m><k>l i m k</k></m></i></l> | |
</p> | |
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
// ---- | |
// Sass (v3.2.19) | |
// Compass (v0.12.6) | |
// ---- | |
/* SIMPLE */ | |
a { color: gray; } | |
b { @extend a; } | |
/* SLIGHTLY LESS SIMPLE */ | |
e f g { color: green; } | |
h { @extend f; } | |
/* HMM... */ | |
i j k { color: red; } | |
l m { @extend j; } | |
/* WAT? */ | |
n o p o { color: blue; } | |
q r { @extend o; } | |
/* THAT MEANS... */ | |
.something-special .other-thing .something-ordinary .other-thing { x: y; } | |
.else-special .else-ordinary { @extend .other-thing; } | |
// This illustrates the shortcomings of the common argument that | |
// Sass doesn't create bad code, misuse of Sass does. Very quickly, | |
// it becomes difficult to reason around what created the selectors | |
// you see in your output. |
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
/* SIMPLE */ | |
a, b { | |
color: gray; } | |
/* SLIGHTLY LESS SIMPLE */ | |
e f g, e h g { | |
color: green; } | |
/* HMM... */ | |
i j k, i l m k, l i m k { | |
color: red; } | |
/* WAT? */ | |
n o p o, n q r p o, q n r p o, n o p q r, q n o p r, n q r p r, q n r p r { | |
color: blue; } | |
/* THAT MEANS... */ | |
.something-special .other-thing .something-ordinary .other-thing, .something-special .else-special .else-ordinary .something-ordinary .other-thing, .else-special .something-special .else-ordinary .something-ordinary .other-thing, .something-special .other-thing .something-ordinary .else-special .else-ordinary, .else-special .something-special .other-thing .something-ordinary .else-ordinary, .something-special .else-special .else-ordinary .something-ordinary .else-ordinary, .else-special .something-special .else-ordinary .something-ordinary .else-ordinary { | |
x: y; } |
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
<p>I want "a" to work the same as "b"</p> | |
<p> | |
<a>a</a> | |
/ | |
<b>b</b> | |
</p> | |
<p>I want "h" to work the same as "f"</p> | |
<p> | |
<e><f><g>e f g</g></f></e> | |
/ | |
<e><h><g>e h g</g></h></e> | |
</p> | |
<p>I want "l m" to work the same as "j" - but I don't know the relative source orders!</p> | |
<p> | |
<i><j><k>i j k</k></j></i> | |
/ | |
<l><i><m><k>l i m k</k></m></i></l> | |
</p> | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment