Full-screen iframe with a height of 100%

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

Is iframe height=100% supported in all browsers?

I am using doctype as:



        
17条回答
  •  Happy的楠姐
    2020-11-22 05:05

    1. Change your DOCTYPE to something less strict. Don't use XHTML; it's silly. Just use the HTML 5 doctype and you're good:

    
    

    2. You might need to make sure (depends on the browser) that the iframe's parent has a height. And its parent. And its parent. Etc:

    html, body { height: 100%; }
    

提交回复
热议问题