Home › Forums › CSS › 2 100% columms + sticky footer › Re: 2 100% columms + sticky footer
April 9, 2013 at 4:20 am
#131099
Participant
You can do it with absolute positioning easily, I hope some one comes up with a better way:
#main {
width: 900px;
}
#site_content {
position: absolute;
top: 150px;
bottom: 30px;
height: auto; /* just remove the 100% height */
}
Then you just need to make the main column scrollable.