JSFiddle - React, Tailwind, and code Playground
HTML
<div class="holder">
content goes here
<div class="label">label is the waylabel is the walabel is the walabel is the walabel is the walabel is the walabel is the walabel is the walabel is the walabel is the walabel is the walabel is the walabel is the wa
</div>
</div>
CSS
.holder {
position: relative; /*so that position: absolute works below */
height: 200px;
border: 1px solid red;
}
.label {
position: absolute; /*now this is positionoed relative to .holder */
bottom: 0;
}