JSFiddle - React, Tailwind, and code Playground

by Kyle

HTML

<script src="http://cdn.jquerytools.org/1.2.2/full/jquery.tools.min.js"></script>
<div class="fixed">Content stuff</div>

<div class="nopos">unpositioned stuff.</div>

CSS

.fixed{
    position: fixed;
    z-index: 1;
    border: 1px solid #aaa;
    width: 150px;
    background: #fff;
}

.nopos
{
    background: #ccc;
    width: 200px;
    height: 1000px;
    margin-top: 300px;
}