生成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
<head> <meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" /> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <link rel="stylesheet" type="text/css" href="bar.css" /> </head> <body> <iframe id="frame" src="_" /> </body> ******* CSS ******* body { padding: 0px; margin: 0px; } #frame { border: none; width: 100%; height: 100%; } #bar { height: 50px; border-bottom: 3px solid #000000; }
以上是关于生成IFRAME以自动调整页面大小的主要内容,如果未能解决你的问题,请参考以下文章
使用 jQuery 按比例调整 iframe 的大小以适合 DIV