Hola RollBack:
No me extrañaría que lo hayas visto en alguna respuesta mia... de todos modos, aquí tienes un ejemplo:
<html>
<head>
<script>
function ajustar() {
document.images["fondo"].width = document.getElementById("tabla").offsetWidth;
document.images["fondo"].height = document.getElementById("tabla").offsetHeight ;
}
</script>
</head>
<body onload="ajustar()">
<div style="position:relative" >
<img name="fondo" src="../miemoticon.gif" />
<table id="tabla" border=1 style="position:absolute; top: 0px; left: 0px" >
<tr>
<td>
Este texto solo tiene el propósito de ampliar la tabla
<br/>
<br/>
<br/>
<br/>
<br/>
<br/>
<br/>
<br/>
</td>
</tr>
</table>
</div>
</body>
</html>
Lo puedes probar incrustando el código en esta página:
http://www.pepemolina.com/probador/index.html y pulsando "mostrar resultado"
Saludos