将<iframe>的高度设置为最大文档的高度</iframe>

时间:2012-08-18 06:44:36

标签: html css iframe

我有以下代码:

<iframe src="http://www.externalsite.com/" style=""/>

假设www.externalsite.com的总高度为X像素。我不知道X.如何使用CSS或其他方法将iframe的高度设置为X像素但没有JavaScript?

2 个答案:

答案 0 :(得分:1)

尝试以下代码

<body style="margin:0px;padding:0px;overflow:hidden">
<iframe src="http://www.youraddress.com" frameborder="0"   style="overflow:hidden;height:100%;width:100%" height="100%" width="100%"></iframe>
</body>

答案 1 :(得分:0)

<iframe src="http://www.externalsite.com/" width="200" height="X"></iframe>

请点击此处了解详情:http://www.w3schools.com/html/html_iframe.asp