JSFiddle - React, Tailwind, and code Playground

by fredd man

HTML

<html>
  <body>
    <div class="container-fluid">   
      <div class="navbar">
        navbar content
      </div>
        <div class="span2 article-tree">
          navigation column
        </div>
        <div class="span10 content-area">
           content column
        </div>
      <div class="footer">
        footer content
      </div>
    </div>
  </body>
</html>

CSS

body, html, .container-fluid {
  height: 100%;
}

.navbar {
  width:100%;
  background:yellow;
}

.article-tree {
  height:100%;
  width: 25%;
  float:left;
  background: pink;
}

.content-area {
  overflow: auto;
  height: 100%;
  background:orange;
}

.footer {
  background: red;
  width:100%;
  height: 20px;
}