How to set the iframe height & width to 100%

后端 未结 7 1507
礼貌的吻别
礼貌的吻别 2021-01-04 04:19

I am in need of doing the following:

  1. I have a header content which is 70px and an iframe with a wrapper. The height & width of the iframe has to be set to
7条回答
  •  一向
    一向 (楼主)
    2021-01-04 04:57

    I have a video frame in proportions 6:19 from YouTube -> by calculating 9/16 - 0.5625. multiplying with 95vw (you can also set to 100vW).

    Worked the best to keep video ratio the same.

    @media all and (max-width: 730px) {
        iframe{
            width: 95vw !important;
            height: calc(95vw*0.56) !important;
        }
    }
        iframe{
        margin:auto;
        display:block;
        width:685px;
        height:385px;
    }
        

提交回复
热议问题