I am trying to create a layout here which looks like the following: Here\'s the fiddle
-
If I understand correctly then one way to do it would be to put [steam content] outside the wrapper, as wrapper is the one that is keeping the footer at the bottom. If you must have the [steam content] inside wrapper than you can try something like this http://ryanfait.com/sticky-footer/ to keep it at the bottom together with the footer
讨论(0)
-
Add position:relative
to your wraper class.
Add position:absolute;bottom:0;
to the stream-content class.
Check it here.
Fiddle
讨论(0)