JSFiddle - React, Tailwind, and code Playground

by sc0rp10

HTML

<div class="wrapper">
    <div class="fixed"></div>
    Scroll me
    <div class="content">
        <input type="text" placeholder="focus me" />
    </div>
</div>

CSS

.wrapper {
    padding-top: 30px;
}
.fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 30px;
    background-color: #336699;
}
.content {
    padding-top: 500px;
}