Is there a way to shrink what's inside an iframe without adjusting css?

any magical 'zoom' parameter out there?!!!

I have a 600px preview iframe i want to fit a 1000px site in without scrollbars...

link|improve this question

79% accept rate
feedback

5 Answers

up vote 2 down vote accepted

I'm afraid not. Your only option would be to use site-specific CSS modifiers to reduce font and element size.

link|improve this answer
feedback

Well, in short no.

You can use in-line CSS to set the width/height to 600px and then also set the overflow:hidden

link|improve this answer
Ah true - my assumption was that the poster wanted the WHOLE site visible. – Seidr Apr 13 '10 at 14:29
Well, I assumed the same thing really. Hopefully, he is not wanting to shrink the site down to fit into the smaller preview. That you can't do... less you do some server side rendering of a page, saving output, shrinking etc etc etc – thecoshman Apr 13 '10 at 14:33
well, you can shrink the site to fit in the iframe, clientside, cfr. my answer below :) – futtta Apr 14 '10 at 16:08
feedback

If you control the Iframe-content, you might find this little hack of mine useful: http://futtta.be/squeezeFrame/

It's a cross-browser standalone javascript thingy that tries to automatically adjust the size of the page it's called from to the available size of the Iframe using css zoom and moz-transform.

link|improve this answer
feedback

You could create a thumbnail of the website. The user could not interact with it, but maybe if you added a link, the user could go to the actual site.

I don't know if that's the best program, but that was what Google gave me.

link|improve this answer
feedback

CSS3 can handle this. This bit of code should handle most all browsers or simply reduce it to fit your needs. No need to "adjust" any existing CSS:

iframe {
  -moz-transform: scale(0.25, 0.25); 
  -webkit-transform: scale(0.25, 0.25); 
  -o-transform: scale(0.25, 0.25);
  -ms-transform: scale(0.25, 0.25);
  transform: scale(0.25, 0.25); 
  -moz-transform-origin: top left;
  -webkit-transform-origin: top left;
  -o-transform-origin: top left;
  -ms-transform-origin: top left;
  transform-origin: top left;
}

Or if you want inline style for example just firefox:

<style>
  #IDNAME {
    -moz-transform: scale(0.25, 0.25); 
    -moz-transform-origin: top left;
  }
</style>

Then of course simply add the ID to your iframe:

<iframe id="IDNAME" src="http://www.whatever.com"></iframe>
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.