I've been trying to figure out how to make my iframe fill the entire page without a scrollbar. Even though I have set the height to 100% and the iframe loads properly, it still appears with a scroll bar instead of covering the full page. You can see an example in this jsfiddle below:
iframe {
width: 100%;
height: 100%;
}
<iframe src="http://www.w3schools.com/tags/tag_iframe.asp"><iframe>
Does anyone know how I can get my iframe to fit into the entire page?