Aqui te dejo un ejemplo en el cual a mi me va bien.
*el DIV ("algo") vendría siendo el contenido que se encuentra dentro del contenedor ("conte").
Código HTML:
Ver original<!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" lang="es"> <meta http-equiv="content-type" content="text/html; charset=utf-8"> html,body {
margin:0;padding:0;border:0;
height:100%;
background:#00ff00;
}
#conte {
width:70%;
margin:0 auto;
min-height:100%;
background:#ff3443;
}
#algo {
height:1400px;
width:300px;
position:relative;
margin:0 auto;
background:#ffffff;
}
<div id="algo">TODO ESTO ES EL CONTENIDO ("supuestamente.")
</div>
Saludos