JSFiddle - React, Tailwind, and code Playground

by xxxvvvxxx

HTML

<div class="wrapper">
   
   <div class="main">test</div>
   
   <h1 class="sticky">
        SOME CONTENT
   </h1>
</div>

CSS

* {
    	margin:0; padding:0;
    }
    .main {
    	height:2000px;
    }
    .sticky{
        position: sticky;
        bottom: 0;
        background:blue;
        color:white;
    }