JSFiddle - React, Tailwind, and code Playground

by villard

HTML

<div class='fixed1'></div>
<div class='fixed2'></div>

CSS

.fixed1, .fixed2 {
    position:fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 500px;
}
.fixed1 {
    background: red;
    top: 0;
}
.fixed2 {
    background: blue;
    top: 500px;
}