How do I resize a Iframe's contents to fill the width/height of the Iframe?
I've changed the width and height of the Iframe to make it bigger, however the content is not scaling with it which leaves a bunch of whitespace (It's like the content is absolutely positioned at the top left of the Iframe).
<iframe width="500px" height="300px" frameborder="0"
scrolling="no" src="someContent">
</iframe>
Why doesn't the Iframe's content scale when you set an Iframe's width/height?