How to set the iframe height & width to 100%

后端 未结 7 1457
礼貌的吻别
礼貌的吻别 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 05:07

    You could attempt to do something like this:

      iframe {
        width: 825px;   // you define your standar width and height
        height: 464px;
        @media screen and (max-width: 1000px){ // then for your responsive you do this or only this. 
          width: calc(84vw);
          height: calc(47vw)
        }  
      }
    

提交回复
热议问题