JSFiddle - React, Tailwind, and code Playground

by isherwood

HTML

<link rel="stylesheet" href="http://netdna.bootstrapcdn.com/twitter-bootstrap/2.0.4/css/bootstrap-responsive.css">
<link rel="stylesheet" href="http://netdna.bootstrapcdn.com/twitter-bootstrap/2.0.4/css/bootstrap.css">
<div class="container-fluid">
    <div class="row-fluid">
        <div class="span3">Side Bar</div>
        
        <div class="span9" id="content">
            Content Bar Example Content
            <br/>Example Content
            <br/>Example Content
            <br/>Example Content
            <br/>Example Content
            <br/>Example Content
            <br/>Example Content
            <br/>Example Content
            <br/>Example Content
            <br/>Example Content
            <br/>Example Content
            <br/>Example Content
            <br/>Example Content
            <br/>Example Content
            <br/>Example Content
            <br/>Example Content
            <br/>Example Content
            <br/>Example Content
            <br/>Example Content
            <br/>Example Content
            <br/>Example Content
            <br/>Example Content
            <br/>Example Content
            <br/>Example Content
            <br/>Example Content
            <br/>Example Content
            <br/>
        </div>
    </div>
</div>

CSS

#content {
    border: 1px solid #000;
    overflow-y:auto;
    height:100%;
}