How to resize iframe when parent window resizes

前端 未结 4 1316
忘掉有多难
忘掉有多难 2021-01-31 20:35

I don\'t think this is not another \"resize iframe according to content height\" question.

I actually want to resize the iframe dynamically according to a resize of the

4条回答
  •  挽巷
    挽巷 (楼主)
    2021-01-31 21:15

    I created a new jsfiddle that gets you what you need in raw css. I didn't test cross-browser extensively, particularly in IE. I would anticipate support in IE8 and 9, but would be hesitant to say that 7 would work without hiccups.

    The relevant changes:

        /* This contains the iframe and sets a new stacking context */
    div#content {
        position: fixed;
        top: 80px;
        left: 40px;
        bottom: 25px;
        min-width: 200px;
        background: black; 
            /* DEBUG: If the iframe doesn't cover the whole space,
               it'll show through as black. */
    }
    
        /* Position the iframe inside the new stacking context
           to take up the whole space */
    div#content iframe {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        height: 100%;
        width: 100%;
    }
    

提交回复
热议问题