<html> <head> <title>div test</title> <style type="text/css"> body { padding:0; margin:auto; } .outer { width:100%; } .top { background-color:red; height: 50%; } .center { vertical-align:middle; height:600px; background-color:black; } .bottom { background-color:blue; height: 50%; } </style> </head> <body> <div class="top">top</div> <div class="outer"> <div class="center">Center</div> </div> <div class="bottom">bottom</div> </body> </html>