HTML CSS examples for CSS Layout:Height
Add a fixed height header with a div that takes up 100% of the remaining space
<html> <head></head> <body> <div style="height:60px; position:fixed; width:100%;"></div> <div style="height:100%; width:100%;"> <p style="padding-top:60px;">hola</p> </div> <!--from w w w .java 2s . c o m--> </body> </html>