JSFiddle - React, Tailwind, and code Playground

by NicoO

HTML

<div class="wrap">
<span>This is what i want to do This is what i want to do</span>
</div>

<div class="wrap">
<span>This is what i want to do This is what i want to do</span>
</div>

CSS

span {
    width: 100px;
    display: block;
    margin-bottom: 10px;
}
.wrap
{
    display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}
.wrap:nth-of-type(2) span { 
}