Iframe的溢出问题

时间:2010-08-13 14:33:13

标签: css iframe overflow

我有一个包含iframe的简单页面。 iframe包含一个带有一些div的页面。当我打开嵌入式页面时,它可以很好地工作。应溢出的div溢出。但是,当我打开容器网站时,它不是。这是我的代码:

容器页面:

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">

<html>
  <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>

    <style type="text/css">
            #content{
                margin: auto;
                width: 500px;
                height: 1000px;
                background: green;
            }

            #frame{
                width:202px; 
                height:302px; 
                overflow: visible;
            }
    </style>

  </head>

  <body>
        <div id="content">
            <iframe id="frame"
                src="http://localhost:8080/webApp/view/test/embeddable.html" 
                scrolling="no" frameborder="0" allowTransparency="true" marginheight="0" marginwidth="0">
            </iframe>           
        </div>
  </body>
</html>

可嵌入页面

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">

<html>
  <head>
    <style type="text/css">
        body {
            width: 200px;
            height: 300px;
            overflow: visible;
            border: 1px solid yellow;
        }

            #id1{
                margin: auto;
                width: 500px;
                height: 10px;
                border: 1px solid white;
                background: red;
                margin-top: 20px;
            }
    </style> 
  </head>

  <body>
        <div id="id1"></div>        
  </body>
</html>

id1应该溢出,但事实并非如此。我已将所有重要div的“溢出”属性设置为“可见”(即使它是默认值)。我不知道我做错了什么。

1 个答案:

答案 0 :(得分:19)

简而言之,不可能有溢出的iframe。 This post给出了解释。

为了达到你所追求的类似效果,最好使用AJAX将嵌入页面注入div,并使div溢出。