css - Help with footer background image -
possible duplicate:
how footer stay @ bottom of web page?
the 2nd background image on page isn't positioned... i'm struggling come fix... need footer @ bottom of page, always. min-height
doesn't work because need remain @ bottom regardless of resolution.
is there css fix this?
-url removed-
sounds looking sticky footer.
http://ryanfait.com/sticky-footer/
* { margin: 0; } html, body { height: 100%; } .wrapper { min-height: 100%; height: auto !important; height: 100%; margin: 0 auto -142px; /* bottom margin negative value of footer's height */ } .footer, .push { height: 142px; /* .push must same height .footer */ } /* sticky footer ryan fait http://ryanfait.com/ */
Comments
Post a Comment