17Dic
Iframe completo con CSS
Primero, definimos el iframe:
<iframe id="the_iframe" src="https://www.grafeco.com" width="300" height="auto" frameborder="0" scrolling="yes"></iframe>
y ahora, el css:
body{margin:0;} #the_iframe{ width:100%; height:100%; border: 0; position:fixed; top:0; left:0; right:0; bottom:0; }
Ya está, tan sencillo y tan útil.