I followed this guide to help setup the columns for my page.
What I'm trying to do is to make the my columns fill the screen if the screen is larger than the content, but when the content is longer than the browser screen can show at once, use the default overflow scroll or auto.
Currently, I have the body, my container (a div around the containers described in the article), and the containers described in the article set to height: 100%. This is fine when the page fits all the content, but when the screen is too small, the content just cuts off.
I tried fixing this by changing the body or my container to min-height to 100% and although this makes the smaller screen show everything again, in the larger screens, the 2 columns "backgrounds" do not extend to the bottom of the page, but my container does.
Edit: my html and body are also set to height 100% currently.
Edit2: here's a jsfiddle for what it looks like when the content is larger than the screen
Now the structure is something like:
body (height: 100%)
my_container (height: 100%)
container2 (height: 100%)
container1 (height: 100%)
column1
column2
I'd like it do be something like
body
my_container (min-height: 100%)
container2 (height: 100%)
container1 (height: 100%)
column1
column2
htmlandbodytoheight: 100%in the CSS? Like sohtml,body{height:100%;}. – Henrik Ammer Sep 7 '12 at 13:32