mas que el navegador, creo que te refieres al área activa. ésta dependerá de la cantidad de barras que tenga el navegador. para conocer el área activa has de usar clientHeight. esto funcionará siempre y cuando la tabla no ocupe mas del 100% del alto
Cita: <!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>CARATULAS DE PELÍCULAS</title>
<style type="text/css">
* {
margin: 0;
padding: 0;
border: none;
position: relative;
}
html, body {
width: 100%;
height: 100%;
}
#bloque {
display: block;
width: 100%;
min-height: 100%;
height: auto !important;
background-color: red;
}
</style>
<script type="text/javascript">
window.onload = function() {
alert(document.getElementById('bloque').clientHeig ht);
}
</script>
</head>
<body>
<div id="bloque">
aquí la tabla
</div>
</body>
</html>