JSFiddle - React, Tailwind, and code Playground
HTML
<div class="box">
<p>
text
</p>
</div>
CSS
.box {
display: flex;
flex-flow: column;
}
p {
background-color: red;
}
<div class="box">
<p>
text
</p>
</div>
.box {
display: flex;
flex-flow: column;
}
p {
background-color: red;
}