Created
July 1, 2014 09:13
-
-
Save Anahkiasen/939475e74a85c70c2129 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 | |
a Some link | |
a Some other link | |
a Some other link |
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.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; | |
} | |
} |
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; | |
-webkit-justify-content: space-between; | |
justify-content: space-between; | |
width: 30rem; | |
padding: 1rem; | |
border: 1px solid black; | |
} | |
.row a { | |
background: Tomato; | |
width: auto; | |
} |
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"><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