How do I make an iframe fit the entire screen without specifying dimensions?
Assuming the iframe
has no small ancestor with position: relative
.
<iframe name="report"style="position: absolute; top: 0; right: 0; bottom: 0: left: 0;">
You should also consider using an external stylesheet.
Use %
<iframe name="report" height="100%" width="100%"></iframe>