JSFiddle - React, Tailwind, and code Playground
by chanonroy
HTML
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css">
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script>
<div>
hello
</div>
<div class="parent">
<div class="child"> twitch </div>
<div class="child"> youtub </div>
<div class="child"> twitter </div>
<div class="child"> twitch </div>
<div class="child"> youtub </div>
<div class="child"> twitter </div>
</div>
CSS
.parent {
display: flex;
flex-wrap: wrap;
background-color: lightgrey;
justify-content: center;
}
.child {
background-color: lightblue;
margin: 5px;
min-width: 32%;
}
@media (max-width: 1200px) {
.child {
min-width: 48%;
}
}
@media (max-width: 800px) {
.child {
min-width: 98%;
}
}