Created
July 22, 2015 09:03
-
-
Save Nazcange/ceeed3358a9f04670d13 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
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
// ---- | |
// Sass (v3.4.14) | |
// Compass (v1.0.3) | |
// ---- | |
@import "compass"; | |
.toto{ | |
@include flexbox(( | |
display: box, | |
box-orient: vertical, | |
box-direction: reverse, | |
box-align: start | |
), $version : 1); | |
@include flexbox(( | |
display: flexbox, | |
flex-wrap: nowrap, | |
flex-direction: column-reverse | |
), $version : 2); | |
@include flexbox(( | |
display: flex, | |
flex-wrap: nowrap, | |
flex-direction: column-reverse | |
)); | |
} | |
.titi{ | |
@include flexbox((flex: 1), $version: 1); | |
@include flexbox((flex: 1), $version: 2); | |
@include flex(1); | |
} |
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
.toto { | |
display: -moz-box; | |
-moz-box-orient: vertical; | |
-moz-box-direction: reverse; | |
-moz-box-align: start; | |
display: -webkit-box; | |
-webkit-box-orient: vertical; | |
-webkit-box-direction: reverse; | |
-webkit-box-align: start; | |
display: -ms-flexbox; | |
-ms-flex-wrap: nowrap; | |
-ms-flex-direction: column-reverse; | |
display: -webkit-flex; | |
-webkit-flex-wrap: nowrap; | |
-webkit-flex-direction: column-reverse; | |
display: flex; | |
flex-wrap: nowrap; | |
flex-direction: column-reverse; | |
} | |
.titi { | |
-moz-flex: 1; | |
-webkit-flex: 1; | |
-ms-flex: 1; | |
-webkit-flex: 1; | |
flex: 1; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment