JSFiddle - React, Tailwind, and code Playground
HTML
<div id="container">
<p> hola </p>
<div id="footerdelcontainer"> hello </div>
</div>
CSS
#container{
width: 600px;
height: 400px;
background: red;
position: relative;
}
#footerdelcontainer{
position: absolute;
bottom: 5px;
background: yellow;
width: 600px;
}