JSFiddle - React, Tailwind, and code Playground
HTML
<div class="outer">
<div class="container">
<p>Текст</p>
<p>Текст</p>
<p>Текст</p>
<p>Текст</p>
<p>Текст</p>
</div>
</div>
<div>
test
</div>
CSS
.outer {
height: 200px;
background: #000;
position: relative;
}
.container {
position: absolute;
bottom: -1.5em;
}
p {
color: #999;
}