Ver Mensaje Individual
  #1 (permalink)  
Antiguo 05/04/2015, 13:11
ismaelfre
 
Fecha de Ingreso: abril-2015
Ubicación: Madrid
Mensajes: 3
Antigüedad: 9 años, 1 mes
Puntos: 0
Zoom de web en Iframe

Tengo lo siguiente, necesito una web con 3 iframes, pero uno de ellos necesito que el contenido, no el iframe, se vea a 90% para que muestre el contenido total.


<html>
<head>
<title>iframes</title>
<style type="text/css">
#iframe {
zoom: 0.15;
-moz-transform:scale(0.75);
-moz-transform-origin: 0 0;
-o-transform: scale(0.75);
-o-transform-origin: 0 0;
-webkit-transform: scale(0.75);
-webkit-transform-origin: 0 0;
}
</style>
</head>

<table border="0px" width="100%" height="100%">
<tr width="100%" height="50%">
<td width="50%" height="336"><iframe name="p2" src="http://www.bing.es" width="100%" height="100%" frameborder="0" style="-webkit-transform:scale(1);-moz-transform-scale(1);"></iframe></td>
</tr>
<tr width="100%" height="50%">
<td width="50%" height="336"><iframe name="p3" src="http://www.bing.es" width="100%" height="100%" frameborder="0" style="-webkit-transform:scale(0.9);-moz-transform:scale(0.9);"></iframe></td>
</tr>
</table>
</body>
</html>

espero puedan ayudarme, ya que si uso el IE con zoom funciona, pero necesito que sea firefox.