iframe reaches bottom of page
Posted
by
John
on Stack Overflow
See other posts from Stack Overflow
or by John
Published on 2012-10-30T20:05:04Z
Indexed on
2012/11/09
5:01 UTC
Read the original article
Hit count: 110
Is there a way to make the height of the <iframe>
reach exactly the bottom of the page? It is hard to judge by using height:xx%
, and it might be dependent on browser.
The code is below:
<!DOCTYPE html>
<html>
<body style="margin:0">
<p style="margin:10px"> hello </p>
<iframe src="http://www.weather.com" style="width:100%; height:95%"></iframe>
</body>
</html>
© Stack Overflow or respective owner