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>
解決策はありますか?