JSFiddle - React, Tailwind, and code Playground

by sym3tri

HTML

<div id=side>
    ss
</div>
<div id=myDiv>
    <div id=nav>
        asdf
    </div>
</div>

CSS

html, body {
    margin: 0;
    padding: 0;
}

#myDiv {
    background-color: #ccc;
    position: absolute;
    left: 20px;
    width: 100%;
    height: 50px;
}

#nav {
    position: fixed;
    background-color: #f00;
    width: 100%;
    top: 0;
}

#side {
    background-color: #333;
    width: 20px;
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
}