JSFiddle - React, Tailwind, and code Playground
HTML
<div class="container">
<div class="row">
</div>
</div>
CSS
.container {
background-color: blue;
}
.row {
background-color: red;
display: flex;
height: 100px;
}
<div class="container">
<div class="row">
</div>
</div>
.container {
background-color: blue;
}
.row {
background-color: red;
display: flex;
height: 100px;
}