我正在尝试在html页面中显示iframe .Iframe在safari上无法正常工作。它
完美适用于firefox,即chrome。
代码:
<div id="my-div">
<iframe id="my-iframe" scrolling="no" src="http://weather.yahoo.com/"></iframe></div>
<style type="text/css">
#my-div
{
width : 200px;
height : 200px;
overflow : hidden;
position : relative;
}
#my-iframe
{
position : absolute;
top : -300px;
left : -400px;
width : 1280px;
height : 1200px;
}
</style>
任何解决方案?