JSFiddle - React, Tailwind, and code Playground

by asif097

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

html, body {height: 100%;}

#content, .container-fluid, .span9
{
    border: 1px solid #000;
    overflow-y:auto;
    height:100%;
}