Align DIV to bottom of page and screen - HTML CSS CSS Layout

HTML CSS examples for CSS Layout:Div Align

Description

Align DIV to bottom of page and screen

Demo Code

ResultView the demo in separate window

<html>
 <head></head> 
 <body style="padding:0;"> 
  <div style="position:fixed; width:100%; height:70px; background-color:yellow; padding:5px; bottom:0px; ">
    test content :D <!--  ww  w .j a va 2  s . c  o m-->
  </div> 
  <!--Content Here-->  
 </body>
</html>

Related Tutorials