我有以下代码:
<iframe src="http://www.externalsite.com/" style=""/>
假设www.externalsite.com的总高度为X像素。我不知道X.如何使用CSS或其他方法将iframe的高度设置为X像素但没有JavaScript?
答案 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>