I would like to have 2 columns whose height is 100%, without using <table> and using sensitive columns from the css skeleton.
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 100% height, but not columns. Is there any way to achieve this?
source share