JSFiddle - React, Tailwind, and code Playground

HTML

<div id="container">
    <span>This is a very very long text that might overlap with the date just below this.</span>
<div id="date">
January 1, 2012
</div>
</div>

CSS

#container {
  position: relative;
  border: 1px solid gray;
  width: 200px;
}

#date {
  position: absolute;
  bottom: 5px;
  right: 5px;
}