JSFiddle - React, Tailwind, and code Playground

by masaab algailani

HTML

<div class="container">
    <div class="span5 fill">
        <div class="test">
          <pre> here is a lot of text....
          And here is some more text
          And also more text
          </pre>
        </div>
    </div>
</div>

CSS

@import url('http://twitter.github.com/bootstrap/assets/css/bootstrap.css');

* {
    padding: 0;
    margin: 0;
}


.fill{
    width:50%;
    height:100%;
    min-height:100%;
    background-color:#990000;
    color:#efefef;
}