Jak rozciągnąć div'a do końca strony niezależnie od ilości tekstu?
Poniżej załączam screena przedstawiającego problem:

#content { width: 1005px; background: #ffffff; float:left; min-height: auto; position: absolute; bottom: 0; top: 222px; }
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" lang="pl" xml:lang="pl"> <head> <style> body { text-align: center; } #all { width: 1005px; margin: auto; } #header { width: 1005px; height: 222px; background: #808080; float:left; min-height: auto; } #content { width: 1005px; background: #ffffff; float:left; min-height: auto; } #content_left { width: 194px; float:left; } #content_right { width: 811px; float:left; } </style> </head> <body style="background-color: #f1f1f1;"> <div id="all"> <div id="content"> <div id="content_left">fdgjhrytjdsf<br />fdgjhrytjdsf<br />fdgjhrytjdsf<br />fdgjhrytjdsf<br />fdgjhrytjdsf<br />fdgjhrytjdsf<br />fdgjhrytjdsf<br />fdgjhrytjdsf<br />fdgjhrytjdsf<br />fdgjhrytjdsf<br />fdgjhrytjdsf<br />fdgjhrytjdsf<br />fdgjhrytjdsf<br />fdgjhrytjdsf<br />fdgjhrytjdsf<br />fdgjhrytjdsf<br /></div> </div> </div> </body> </html>
<!DOCTYPE html> <html> <head> <meta http-equiv="content-type" content="text/html; charset=utf-8"> <style> html,body { text-align: center; background: #f1f1f1; margin: 0; padding: 0; height: 100%; } #wrapper { width: 1005px; background: #fff; margin: 0 auto; position: relative; min-height: 100%; } .header { height: 222px; background: #808080; } .content { } .content p.left { width: 194px; float:left; } .content p.right { width: 811px; float:left; } .clear { clear: both; width: 100%; } </style> </head> <body> <div id="wrapper"> <div class="content clear"> <p class="left"> </p> <p class="right"> </p> </div> </div> </body> </html>