Created
November 24, 2014 13:24
-
-
Save Anahkiasen/b5f87f3cf497b79256cd 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
<section class="a"> | |
<div>1</div> | |
<div>2</div> | |
</section> | |
<section class="b"> | |
<div>1</div> | |
<div>2</div> | |
</section> |
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.7) | |
// Compass (v1.0.1) | |
// ---- | |
section { | |
height: 200px; | |
display: flex; | |
border: 1px solid blue; | |
flex-wrap: wrap; | |
div { | |
box-sizing: border-box; | |
border: 1px solid red; | |
flex: 1; | |
min-width: 200px; | |
} | |
} | |
.a { | |
width: 400px; | |
} | |
.b { | |
width: 200px; | |
} |
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
section { | |
height: 200px; | |
display: flex; | |
border: 1px solid blue; | |
flex-wrap: wrap; | |
} | |
section div { | |
box-sizing: border-box; | |
border: 1px solid red; | |
flex: 1; | |
min-width: 200px; | |
} | |
.a { | |
width: 400px; | |
} | |
.b { | |
width: 200px; | |
} |
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
<section class="a"> | |
<div>1</div> | |
<div>2</div> | |
</section> | |
<section class="b"> | |
<div>1</div> | |
<div>2</div> | |
</section> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment