JSFiddle - React, Tailwind, and code Playground
by Abdul Ahmad
HTML
<div class='centered-box'>
<div class='column green'>
</div>
<div class='column red'>
</div>
</div>
CSS
html, body {
width: 100%;
height: 100%;
margin: 0;
}
.centered-box {
text-align: center;
}
.column {
display: inline-block;
width: 45%;
min-height: 100px;
}
.column.red {
background-color: red;
}
.column.green {
background-color: green;
}
@media(min-width: 0) and (max-width: 600px) {
.column {
width: 95%;
}
}