JSFiddle - React, Tailwind, and code Playground

by S.M. Murad Hasan Tanvir

HTML

<div class="modultext"><span>Sample text</span></div>

CSS

.modultext{
  height: 50px;
  width: 300px;
  background: red;
  overflow: hidden;
  position: relative;
}
span{
  position: absolute;
  bottom: 15px;
}