HTML CSS examples for CSS Widget:Footer
The footer having all the width of the page
<html> <head> <meta name="viewport" content="width=device-width, initial-scale=1"> <style id="compiled-css" type="text/css"> footer>table { border:2px solid Chartreuse; width:100%; height:100%; } </style> <!--from w ww . j a va 2 s. c om--> </head> <body> <footer style="background-color:#444; width:100%; height:200px; border-bottom:0px;"> <table> <tbody> <tr> <td></td> </tr> </tbody> </table> </footer> </body> </html>