Prueba con este código:
  
Código:
 <html xmlns="http://www.w3.org/1999/xhtml">
<head>
  <meta http-equiv="Content-Type"
 content="text/html; charset=iso-8859-1" />
  <title>Columnas centradas</title>
  <style type="text/css">
#divContenedor { width:500px;
background-color:red;
padding:10px 10px 10px 10px;
height: auto ! important;
min-height:30px;
height:30px;
}
#divContenido {
height: auto ! important;
min-height:30px;
height:30px;
width:400px;
background-color:blue;
}
  </style>
</head>
<body>
<div id="divContenedor">
<div id="divContenido">	    
a<br>a<br>a<br>a<br>a<br>a<br>a<br>a<br>a<br>a<br>a<br>a<br>a<br>a<br>a<br>a<br>a<br>a<br>a<br>
	    </div>
</div>
</body>
</html>
  A ver si es lo que quieres. Es evidente que antes no había entendido tu problema. 
Mikel.