How to make columns 100% height with skeleton?

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?

+6
source share
1 answer

Try this CSS:

 .container { min-height: 100%; float: left; width: 100%; } 
0
source

All Articles