Skip to content

Instantly share code, notes, and snippets.

@WebPlatformDocs
Created December 23, 2013 09:27
Show Gist options
  • Save WebPlatformDocs/8094035 to your computer and use it in GitHub Desktop.
Save WebPlatformDocs/8094035 to your computer and use it in GitHub Desktop.
Untitled
.list {
display: -webkit-flex;
display: -moz-flex;
display: -ms-flex;
display: -o-flex;
display: flex;
-webkit-flex-flow: row wrap;
-moz-flex-flow: row wrap;
-ms-flex-flow: row wrap;
-o-flex-flow: row wrap;
flex-flow: row wrap;
}
.list div {
-webkit-flex: 1;
-moz-flex: 1;
-ms-flex: 1;
-o-flex: 1;
flex: 1;
background: #CCC;
margin: 5px;
}
<div class="list">
<div>First</div>
<div>Second</div>
<div>Third</div>
</div>
// alert('Hello world!');
{"view":"split","fontsize":"100","seethrough":"","prefixfree":"","page":"css"}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment