Skip to content

Instantly share code, notes, and snippets.

@thegitfather
Forked from anonymous/index.html
Created March 23, 2016 18:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save thegitfather/695795f79e3bc3e39cc0 to your computer and use it in GitHub Desktop.
Save thegitfather/695795f79e3bc3e39cc0 to your computer and use it in GitHub Desktop.
JS Bin // source https://jsbin.com/kegifu
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>JS Bin</title>
<style id="jsbin-css">
.container {
display: flex;
flex-flow: row wrap;
justify-content: space-between;
}
.container .box {
background: #acf;
width: 100px;
height: 60px;
margin: 1%;
}
</style>
</head>
<body>
<div class="container">
<div class="box"></div>
<div class="box"></div>
<div class="box"></div>
<div class="box"></div>
<div class="box"></div>
<div class="box"></div>
<div class="box"></div>
<div class="box"></div>
<div class="box"></div>
<div class="box"></div>
<div class="box"></div>
<div class="box"></div>
<div class="box"></div>
</div>
<script id="jsbin-source-css" type="text/css">.container {
display: flex;
flex-flow: row wrap;
justify-content: space-between;
}
.container .box {
background: #acf;
width: 100px;
height: 60px;
margin: 1%;
}
</script>
</body>
</html>
.container {
display: flex;
flex-flow: row wrap;
justify-content: space-between;
}
.container .box {
background: #acf;
width: 100px;
height: 60px;
margin: 1%;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment