willpracht
1/23/2014 - 9:31 PM

Fake Flexbox

Fake Flexbox

<section>
  <nav></nav>
  <article></article>
</section>

<style>
  nav{
    top: 0;
    bottom: 0;
    left: 0;
    position: absolute;
    width: 50px;
  }
  
  article{
    padding-left: 50px;
  }
    
</style>