The footer having all the width of the page - HTML CSS CSS Widget

HTML CSS examples for CSS Widget:Footer

Description

The footer having all the width of the page

Demo Code

ResultView the demo in separate window

<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>

Related Tutorials