iframe设置height无效

iframe设置height为100%无效,实际是因为父空间高度没有设置的问题。

代码如下

<body>
    <iframe id="content" src="main.do" name="content" frameborder="0" scrolling="no" height="100%" width="100%"></iframe>
</body>

追加css,设置html跟body高度为100%,即可全屏显示iframe

html,body
{
    margin: 0;
    padding: 0;
    border: 0;
    overflow: hidden;
    height: 100%;
}

原文地址:https://www.cnblogs.com/lckblog/p/5213862.html