Skip to content

Instantly share code, notes, and snippets.

@Anahkiasen
Created July 1, 2014 09:13
Show Gist options
  • Save Anahkiasen/939475e74a85c70c2129 to your computer and use it in GitHub Desktop.
Save Anahkiasen/939475e74a85c70c2129 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
.row
a Some link
a Some other link
a Some other link
// ----
// Sass (v3.3.9)
// Compass (v1.0.0.alpha.20)
// ----
@import "compass";
@import "compass/css3";
.row {
@include display-flex;
@include justify-content(space-between);
width: 30rem;
padding: 1rem;
border: 1px solid black;
a {
background: Tomato;
width: auto;
}
}
.row {
display: -webkit-flex;
display: flex;
-webkit-justify-content: space-between;
justify-content: space-between;
width: 30rem;
padding: 1rem;
border: 1px solid black;
}
.row a {
background: Tomato;
width: auto;
}
<div class="row"><a>Some link</a><a>Some other link</a><a>Some other link</a></div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment