Full-screen iframe with a height of 100%

前端 未结 17 1487
星月不相逢
星月不相逢 2020-11-22 04:35

Is iframe height=100% supported in all browsers?

I am using doctype as:



        
17条回答
  •  萌比男神i
    2020-11-22 05:21

    As per https://developer.mozilla.org/en-US/docs/Web/HTML/Element/iframe, percentage values are no longer allowed. But the following worked for me

    
    

    Though width:100% works, height:100% does not work. So window.innerHeight has been used. You can also use css pixels for height.

    Working code: Link Working site: Link

提交回复
热议问题