HTML CSS examples for CSS Widget:Footer
Centering footer contents with css in html5
<html> <head> <meta name="viewport" content="width=device-width, initial-scale=1"> <style id="compiled-css" type="text/css"> footer {<!-- w w w. ja v a2 s .c o m--> margin:auto; height:331px; background-color:Chartreuse; color:yellow; text-align:center; } </style> </head> <body> <footer> Lorem ipsum </footer> </body> </html>