Source Code:
(back to article)
Submit
Result:
Report an issue
<!DOCTYPE html> <html> <head> <title>Title of the document</title> <style> html, body, #outer { height: 100%; width: 100%; margin: 0; } #outer { display: table; } #fixed-height { height: 100px; background-color: #ebcaca; display: table-row; } #remaining-height { background-color: #ebe6e6; display: table-row; } </style> </head> <body> <div id="outer"> <div id="fixed-height"> Fixed height </div> <div id="remaining-height"> Remaining height </div> </div> </body> </html>