HTML CSS examples for CSS Layout:Height
Make 100% Div height to fill page
<html> <head> <meta name="viewport" content="width=device-width, initial-scale=1"> <style id="compiled-css" type="text/css"> html,body { width:100%; height:100%; } </style> <!--from w w w.java2 s . c o m--> </head> <body> <div> test </div> </body> </html>