Skip to content

Instantly share code, notes, and snippets.

@versine
Created January 12, 2017 20:12
Show Gist options
  • Select an option

  • Save versine/a9f827d1596a9b40351ba9e5e7f3af70 to your computer and use it in GitHub Desktop.

Select an option

Save versine/a9f827d1596a9b40351ba9e5e7f3af70 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<style>
.thirty {
width: 30%;
min-width: 150px;
min-height: 150px;
border: 1px solid black;
margin: 1%
}
.container {
display: flex;
flex-wrap: wrap;
justify-content:space-around;
background-color: #aaffff;
}
</style>
</head>
<body>
<div class="container">
<div class="thirty">
This is content
</div>
<div class="thirty">
This is content
</div>
<div class="thirty">
This is content
</div>
<div class="thirty">
This is content
</div>
<div class="thirty">
This is content
</div>
<div class="thirty">
This is content
</div>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment