Created
June 17, 2015 10:07
-
-
Save nixstrom/c3617e9a95a5d365928f 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
<main> | |
<div></div> | |
<div></div> | |
<div></div> | |
<div></div> | |
</main> |
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.4.14) | |
// Compass (v1.0.3) | |
// ---- | |
main { | |
background: lightblue; | |
display: flex; | |
margin: 0 auto; | |
overflow: hidden; | |
flex-flow: row wrap; | |
width: 800px; | |
} | |
div { | |
background: darkgreen; | |
flex: 1 0 calc(25% - 2rem); | |
height: 100px; | |
margin: 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
main { | |
background: lightblue; | |
display: flex; | |
margin: 0 auto; | |
overflow: hidden; | |
flex-flow: row wrap; | |
width: 800px; | |
} | |
div { | |
background: darkgreen; | |
flex: 1 0 calc(25% - 2rem); | |
height: 100px; | |
margin: 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
<main> | |
<div></div> | |
<div></div> | |
<div></div> | |
<div></div> | |
</main> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment