Skip to content

Instantly share code, notes, and snippets.

@Anahkiasen
Created June 12, 2014 09:27
Show Gist options
  • Save Anahkiasen/dd7746c2e82bd10d7f65 to your computer and use it in GitHub Desktop.
Save Anahkiasen/dd7746c2e82bd10d7f65 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
.row
p Some<br>Text
p Some<br>More<br>Text
p Some<br>More<br>More<br>Text
// ----
// 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;
}
}
.row {
display: -webkit-flex;
display: flex;
}
.row p {
background: Tomato;
width: 10rem;
margin-right: 1rem;
}
<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