Ver Mensaje Individual
  #4 (permalink)  
Antiguo 01/07/2010, 10:30
Avatar de deirdre
deirdre
 
Fecha de Ingreso: mayo-2009
Mensajes: 690
Antigüedad: 14 años, 11 meses
Puntos: 45
Respuesta: Sidebar fixed alto 100% - contenido expandible

Hola gerazmv

La información que pones no es completa, pero mira si esto te ayuda a encontrar la solución:

Código HTML:
<!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">

<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Estructura</title>
<style type="text/css">
html, body {
	height: 100%
}
* {
	margin: 0;
	padding: 0;
}
#page { 
	background-color: #333333; 
	border-top: 4px solid #F82B7D; 
	height: 100%; 
	min-width: 600px; 
	position: relative; 
}
#sidebar { 
	background-color: #1F1F1F; 
	border-right: 1px solid #828282; 
	min-height: 400px; 
	float: left; 
	width: 200px; 
	height: 100%; 
	min-height:500px; 
} 
#contenido { 
	margin: 0 20px 0 15em; 
	color:#FFFFFF; 
}
</style>
</head>

<body>
<div id="page">
	<div id="contenido"></div>	
	<div id="sidebar"></div>
</div>
</body>

</html> 
O bien pon la totalidad de tu código

Bye