Last active
August 29, 2015 14:24
-
-
Save mnich/5f44fa2b6baeae49ba96 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="one"> | |
| <div class="one-inner">one-inner</div> | |
| <div class="two-inner">two-inner</div> | |
| <div class="three-inner">three-inner</div> | |
| </div> | |
| <div class="two">two</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.4.14) | |
| // Compass (v1.0.3) | |
| // ---- | |
| .one{ | |
| border: 1px solid yellow; | |
| position:relative; | |
| } | |
| .one-inner, .two-inner, .three-inner { | |
| position: absolute; | |
| border: 1px solid red; | |
| } | |
| .two { | |
| border: 1px solid green; | |
| position: relative; | |
| } |
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
| .one { | |
| border: 1px solid yellow; | |
| position: relative; | |
| } | |
| .one-inner, .two-inner, .three-inner { | |
| position: absolute; | |
| border: 1px solid red; | |
| } | |
| .two { | |
| border: 1px solid green; | |
| position: relative; | |
| } |
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="one"> | |
| <div class="one-inner">one-inner</div> | |
| <div class="two-inner">two-inner</div> | |
| <div class="three-inner">three-inner</div> | |
| </div> | |
| <div class="two">two</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment