Pues no se si os referís a algo parecido a esto, o al menos partiendo de esta base:
Cita: <!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="es-es">
<head>
<title>Simulación de tabla</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<style type="text/css">
* { margin: 0px;
padding: 0px;
}
html, body { height: 100%;
width: 100%;
}
#padre { border: 2px solid #f00;
min-height: 99%;
height: auto!important;
height: 99%;
position: relative;
}
#uno { border: 2px solid rgb(51, 255, 51);
background-color: transparent;
height: 50px;
}
</style>
</head>
<body>
<div id="padre">
<div id="uno">Esta fila tendrá siempre 50px de
alto</div>Esta fila ocupará el resto de alto<br/>
Esta fila ocupará el resto de alto<br/>
</div>
</body>
</html>
Mikel.