Created
November 7, 2015 02:33
-
-
Save mirisuzanne/ff3aa4e68d267c93cb74 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="container"> | |
<div class="test">hello</div> | |
<div class="test2">hello</div> | |
<div class="test">hello</div> | |
</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
// ---- | |
// libsass (v3.2.5) | |
// ---- | |
@import 'susy'; | |
.some-selector { | |
@include span(5); | |
[dir='rtl'] & { | |
@include with-layout(rtl) { | |
@include span(5); | |
} | |
} | |
} |
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
.some-selector { | |
width: 126.31579%; | |
float: left; | |
margin-right: 5.26316%; | |
} | |
[dir='rtl'] .some-selector { | |
width: 126.31579%; | |
float: right; | |
margin-left: 5.26316%; | |
} |
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="container"> | |
<div class="test">hello</div> | |
<div class="test2">hello</div> | |
<div class="test">hello</div> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment