JSFiddle - React, Tailwind, and code Playground
by Bacher
HTML
<div class="wrapper">
<p>
Line 1
</p>
<p>
Line 2
</p>
</div>
<div class="wrapper flex">
<p>
Line 1
</p>
<p>
Line 2
</p>
</div>
CSS
.p {
margin: 1em 0;
}
.wrapper {
border: 1px solid black;
}
.flex {
display: flex;
flex-direction: column;
}