HTML CSS examples for CSS Widget:Footer
Footer moving with content
<html> <head> <meta name="viewport" content="width=device-width, initial-scale=1"> <style id="compiled-css" type="text/css"> .contentwrap {<!--from w w w .j a v a 2 s. c o m--> background-color:Chartreuse; height:291px; min-height:213px; } .footerwrap { background-color:yellow; height:51px; } </style> </head> <body> <div class="page"> <div class="contentwrap"> Lorem ips </div> <div class="footerwrap"> Lorem ip </div> </div> </body> </html>