body{ margin: 0; padding: 0; } #main{ height: 100%; background:#636363; } #a { background: #363636; height: 100px; } #c { position: absolute; bottom: 0; background: #363636; height: 100px; width: 100%; }
<!doctype html public "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="pl-PL" lang="pl-PL"> <head> <style> body{ margin: 0; padding: 0; } #main{ height: 100%; background:#636363; } #a { background: #363636; height: 100px; } #b { height: 100px; background: white; } #c { bottom: 0; background: #363636; height: 100px; width: 100%; } </style> </head> <html> <body > <div id="main"> </div> </body> </html> </html>