HTML CSS examples for CSS Widget:UL
Make div to extend full height
<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>