JSFiddle - React, Tailwind, and code Playground

by technotarek

HTML

<div id="container">     
    <aside> 
    sb   <br><br><br><br>
    </aside>
    
    <div id="content">
   	<div class="dummy-height">
    dummy
    </div>
	</div> 
</div>

CSS

html{
          min-height:100%;	
      }
      body{
          min-height:100%;
          background-color:#eee;
      }
      #container{
      	  background-color:#ccc;
    background: #ccc url('http://s30.postimg.org/v424ogcg1/image.gif') 0 0 repeat-y;
    height:100%;
      }	
      aside{
          width:260px;
          float:left;
          background-color:#333;
          min-height:100%
      }
	#content{
		min-height:100%;
		margin-left:300px;
	}
    .dummy-height{
    	height:2000px;
        background-color:#777;
    }