
28/10/2010, 16:55
|
| | Fecha de Ingreso: octubre-2010
Mensajes: 1
Antigüedad: 14 años, 5 meses Puntos: 0 | |
Espacio entre iframe con altura ajustable y otro iframe Hola!
Tengo el siguiente código para hacer un sitio con un iframe de tamaño variable, seguido por otro normal. Cuando lo veo, hay un espacio entre los dos que no debería existir.
<body oncontextmenu="return false" onkeydown="return false" >
<div align="center">
<table width="950" border="0" cellspacing="0" cellpadding="0">
<tr>
<td><iframe src="inicio.html" style="width:950px;height:600px" allowtransparency="true" name="contenedor" frameborder="0" scrolling="no" id="contenedor" onLoad="resizeIframe(this.id)" ></iframe></td>
</tr>
</table>
<table width="950" border="0" cellspacing="0" cellpadding="0">
<tr>
<td height="35" bgcolor="#BC4C72"><iframe src="menubot.html" name="menubot" width="950" height="35" scrolling="No" frameborder="0" id="menubot" allowtransparency="true"></iframe></td>
</tr>
</table>
</div>
</body>
</html>
Qué puedo hace para eliminarlo?
El ejemplo del sitio es http://www.eclipsedc.com.mx/t2/ |