I would like to have 2 columns that are 100% height, without using <table> and using the responsive columns from skeleton css.
html, body {
    height: 100%;
}
.container {
    min-height: 100%;
}
.column, .columns {
    min-height: 100%;
}
<div class="container">
    <div class="ten columns alpha">
               bla bla bla
    </div>
    <div class="six columns omega">
        bla bla bla
    </div>
</div>
The container looks like it's 100% height but not the columns. Is there a way to achieve this ?
 
     
    