JSFiddle - React, Tailwind, and code Playground

by lun471k

HTML

<div class="parent">
    parent
  <div class="bottom">
      bottom
  </div>
</div>

CSS

.parent {
    height: 4083px;
    background-color:red;
}
.bottom{
  position:fixed;
  bottom:0;
  background-color:yellow;
}