JSFiddle - React, Tailwind, and code Playground

by Neo Aptt

HTML

<!-- some divs before -->
<div class="container">
    <div class="green"><div class="blue">Blue</div>Green</div>
</div>
<!-- end of the page -->

CSS

.container {
    position: relative;
    width: 100%;
}
.blue {
    position: relative;
    width: 100%;
    background-color: #bbf;
}
.green {
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 250px;
    background-color: #bfb;
}