Even though this solution is done with Jquery I though it may be useful for anyone doing columns to fit the screen size.
For columns starting at the top of the page this solution is the most simple and works alright: (the solution posted by @Ariona)
body,html{
height:100%;
}
div#right{
height:100%
}
For columns that are not starting at the top of the page (for example: if they are starting below the header).
<script>
$(document).ready(function () {
var column_height = $("body").height();
column_height = column_height - 100; // 100 is the header height
column_height = column_height + "px";
$("#column").css("height",column_height);
});
</script>
First method applies the body height to it and the columns as well, which means that is starting_pixels + height100%.
The second method gets the height of page shown to the user by getting the height of the body and then substracts the header size to know how much height is left to display the column.