JSFiddle - React, Tailwind, and code Playground
by ronnjoe
HTML
<div>
<div></div>
<div></div>
</div>
CSS
body > div {
background: #aaa;
display: flex;
flex-wrap: wrap;
}
body > div > div {
flex-grow: 1;
width: 75%;
height: 100px;
}
body > div > div:nth-child(even) {
background: #23a;
}
body > div > div:nth-child(odd) {
background: #49b;
}