I want the iframe to be the height of the src page so it fits the whole page without scrolling the iframe.
So far, the width works perfectly but not the height.
#iframe {
overflow:hidden;
width: 100%;
max-width: 600px;
height: 100%;
}
<iframe id="iframe" src="page.html" frameborder="0" scrolling="no"></iframe>