Last active
August 29, 2015 14:22
-
-
Save davilious/621f0d9e10ae8aac4397 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
| <div class="green-element"></div> |
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.7) | |
| // ---- | |
| .red-element { | |
| height: 200px; | |
| width: 200px; | |
| background: red; | |
| } | |
| .green-element { | |
| @extend .red-element; | |
| background: green; | |
| } | |
| .blue-element { | |
| background: blue; | |
| } | |
| /* remove comment to see the collision | |
| .red-element { | |
| height: 200px; | |
| width: 200px; | |
| background: red; | |
| } | |
| */ |
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
| .red-element, .green-element { | |
| height: 200px; | |
| width: 200px; | |
| background: red; | |
| } | |
| .green-element { | |
| background: green; | |
| } | |
| .blue-element { | |
| background: blue; | |
| } | |
| /* remove comment to see the collision | |
| .red-element { | |
| height: 200px; | |
| width: 200px; | |
| background: red; | |
| } | |
| */ |
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
| <div class="green-element"></div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment