JSFiddle - React, Tailwind, and code Playground

by grainne

HTML

<div id="container">
    <div id="text-container">
        text text text text text text text text text text text text text text text text text text text text          <!--uncomment this, to move first text upwards new text new textnew textnew textnew textnew textnew textnew textnew textnew textnew textnew textnew textnew textnew textnew text    -->    
    </div>
</div>

CSS

#container{
    position:relative;
    width: 300px;
    height: 200px;
    background: #f90;  
}
#text-container{
    position: absolute;
    bottom: 0;
    width: 300px;
    min-height: 10%;
    background: #f00;
}