0

我想将 iframe 插入到具有以下要求的网页中:

  1. iframe 高度必须为 100% - 它应该使用其内容拉伸高度。
  2. iframe 滚动条不应可见,但页面滚动条应与 iframe 内容的高度相关。
  3. iframe 源来自不同的域。

集成 iframe 后,网页应该是单个普通网页。我已经设置了页面和 iframe 源页面的样式以相互匹配。

我通过搜索尝试了不同的解决方案,但到目前为止还没有运气。

请帮帮我

谢谢你

4

2 回答 2

2

使用 css 作为

iframe{
height: 250px; // whatever you want
}

链接演示

于 2012-10-17T06:10:29.487 回答
1

试试这个代码...

<!DOCTYPE html>
<html>
<head>
<title>iframed site</title>
<style>
.restricted{
    width:100%; 
    height:100%; 

    overflow-x: hidden;

    -ms-overflow-x: hidden; 


}
</style>
</head>

<body>
<iframe src="http://www.mukhesh-blog.blogspot.com" class="restricted"></iframe>
</body>
</html>

或这个....

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html lang="en">
 <head>
  <title>iframe example</title>
  <style type="text/css">
   html, body, div, iframe { margin:0; padding:0; height:100%; }
   iframe { display:block; width:100%; border:none; }
  </style>
 </head>
 <body>
  <div>
   <iframe src="http://example.org/">
    <p><a href="http://example.org/">example.org</a></p>
   </iframe>
  </div>
 </body>
</html>
于 2012-10-17T06:23:54.970 回答