Make div to extend full height - HTML CSS CSS Widget

HTML CSS examples for CSS Widget:UL

Description

Make div to extend full height

Demo Code

ResultView the demo in separate window

<html>
 <head> 
  <style type="text/css">
html,body {
   height:100%;
   margin:0px;
   padding:0px;
}

#full {<!--from  w ww  . ja va  2s.  c  o  m-->
   background:Chartreuse;
   height:100%
}
</style> 
 </head> 
 <body> 
  <div id="full"> 
  </div>  
 </body>
</html>

Related Tutorials