HTML CSS examples for CSS Layout:Height
Using CSS, make a Div to Expand the height of the page
<html lang="en"> <head> <style> div {<!-- w ww . j a va 2 s.co m--> background-color:Chartreuse; height:100vh; } body { margin:0; } </style> </head> <body translate="no"> <div> O </div> </body> </html>