This is probably really simple. How do I get the content and sidebar divs to extend the whole way down until they are touching the footer? (without saying something like height:1000px)
http://codepen.io/sheepysheep60/pen/yjKdl
Thanks!
body > #wrap {height: auto; min-height: 100%;}
Try removing height: auto;
change the body > #wrap to
body > #wrap { height: 100%; box-sizing:border-box; padding-bottom:200px; }
But take care, the box-sizing property is IE 8+ only.
This is probably really simple. How do I get the content and sidebar divs to extend the whole way down until they are touching the footer? (without saying something like height:1000px)
http://codepen.io/sheepysheep60/pen/yjKdl
Thanks!
body > #wrap {height: auto; min-height: 100%;}
Try removing height: auto;
change the body > #wrap to
But take care, the box-sizing property is IE 8+ only.