生成IFRAME以自动调整页面大小

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了生成IFRAME以自动调整页面大小相关的知识,希望对你有一定的参考价值。

Remove the doctype and any xml namespace declarations from your header and quirks mode will take care of the rendering, additionally this fix is not compatible with IE8 rendering so we need to put IE8 in emulation mode
  1. <meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" />
  2. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  3. <link rel="stylesheet" type="text/css" href="bar.css" />
  4. <title>Title of the document</title>
  5. </head>
  6. <div id="bar">bar content</div>
  7. <iframe id="frame" src="_" />
  8. </body>
  9.  
  10. *******
  11. CSS
  12. *******
  13.  
  14. body {
  15. padding: 0px;
  16. margin: 0px;
  17. }
  18.  
  19. #frame {
  20. border: none;
  21. width: 100%;
  22. height: 100%;
  23. }
  24.  
  25. #bar {
  26. height: 50px;
  27. border-bottom: 3px solid #000000;
  28. }

以上是关于生成IFRAME以自动调整页面大小的主要内容,如果未能解决你的问题,请参考以下文章

怎么让iframe的大小跟随内容的大小自动调整?

禁用 iframe 自动调整大小

将 iframe 内容高度设置为动态自动调整大小

使用 jQuery 按比例调整 iframe 的大小以适合 DIV

使用 jQuery 按比例调整 iframe 的大小以适合 DIV

iframe resizer第二个没有调整大小