Created
June 12, 2014 09:27
-
-
Save Anahkiasen/dd7746c2e82bd10d7f65 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
.row | |
p Some<br>Text | |
p Some<br>More<br>Text | |
p Some<br>More<br>More<br>Text |
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.3.8) | |
// Compass (v1.0.0.alpha.19) | |
// ---- | |
@import "compass"; | |
@import "compass/css3"; | |
.row { | |
@include display-flex; | |
p { | |
background: Tomato; | |
width: 10rem; | |
margin-right: 1rem; | |
} | |
} |
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
.row { | |
display: -webkit-flex; | |
display: flex; | |
} | |
.row p { | |
background: Tomato; | |
width: 10rem; | |
margin-right: 1rem; | |
} |
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="row"> | |
<p>Some<br>Text</p> | |
<p>Some<br>More<br>Text</p> | |
<p>Some<br>More<br>More<br>Text</p> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment