How can I scale the content of an iframe?

前端 未结 17 2274
后悔当初
后悔当初 2020-11-22 11:46

How can I scale the content of an iframe (in my example it is an HTML page, and is not a popup) in a page of my web site?

For example, I want to display the content

17条回答
  •  日久生厌
    2020-11-22 12:33

    This was my solution on a page with 890px width

    #frame { 
    overflow: hidden;
    position: relative;
    width:1044px;
    height:1600px;
    -ms-zoom: 0.85;
    -moz-transform: scale(0.85);
    -moz-transform-origin: 0px 0;
    -o-transform: scale(0.85);
    -o-transform-origin: 0 0;
    -webkit-transform: scale(0.85);
    -webkit-transform-origin: 0 0; 
    
    }
    

提交回复
热议问题