JSFiddle - React, Tailwind, and code Playground

by austinfrance

HTML

<body class="menu-top">
    <div class="menu">This is a menu</div>
    <div class="content">This is some content</div>
</body>

CSS

body { border: 0; padding: 0; }
.menu { position: fixed; height: 2em; width: 100%; 
    background-color: red; top: 0; color: white; }
.menu-top { padding-top: 2em; }