JSFiddle - React, Tailwind, and code Playground
HTML
<div>
Lorem ipsum
<a href="#">read more</a>
</div>
CSS
div {
background: lightgreen;
width: 200px;
height: 200px;
position: relative;
}
div a {
display: block;
background: lightblue;
position: absolute;
float: left;
bottom: 0;
right: 0;
}