possible to shrink contents of iframe?

后端 未结 6 2049
长情又很酷
长情又很酷 2020-12-02 18:46

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

6条回答
  •  星月不相逢
    2020-12-02 19:48

    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:

    
    

    Then of course simply add the ID to your iframe:

    
    

提交回复
热议问题