overflow-y:visible; 
border:0px; 
font-size:12px; 
font-family: 宋体 Fixedsys; 
line-height:150%; 
overflow:visible; 
border-width:0px; 
width:100%; 
height:100%; 以上这些是样式

解决方案 »

  1.   

    <iframe id="ifr" src="chain.asp?flowID=1" width="100%" height="520" frameborder="0"></iframe>
      

  2.   

    <iframe frameBorder=0 id="mainFrame" name="mainFrame" src="includes/welcome.jsp" style="height:expression(1); aho:expression(autoResize()); width:100%;"></iframe>
    <script language="javascript">
    //iframe的高度随内容自动增大,而不产生滚动条。
    function autoResize() {
      try {
        document.all["mainFrame"].style.height=mainFrame.document.body.scrollHeight;
      }catch(e){}
    }
    </script>
      

  3.   

    demo.htm<iframe src="in.htm" name="in" border="0" frameborder=0></iframe>in.htm 加入..<script language="Javascript"> 
    function window.onload() 

    parent.document.all("in").style.height=document.body.scrollHeight+15; 
    parent.document.all("in").style.width=document.body.scrollWidth+10; 
    }
    </script>