JSFiddle - React, Tailwind, and code Playground

by JamesKyle

HTML

<link rel="stylesheet" href="http://cdn.thejameskyle.com/bootstrap.css">
<link rel="stylesheet" href="http://cdn.thejameskyle.com/bootstrap-responsive.css">
<script src="http://cdn.thejameskyle.com/bootstrap.js"></script>
<div class="container">
    <div class="row">
        <div class="span2">
            <p>x</p>
            <p>x</p>
            <p>x</p>
            <div class="something" data-spy="affix" data-offset-top="20"></div>
        </div>
    </div>
</div>

CSS

body {
    height: 4000px;
}



.something {
    width: inherit;
    height: 100px;
    
    background: green;
}