2013-01-12 104 views
0

所以我編寫了一個佈局,我使用了一個DIV來讓我的iframe保持在佈局的範圍內。 問題是我的DIV一直在移動,每當我調整瀏覽器的大小。 我四處尋找答案,但他們都沒有幫助解決我遇到的問題。當我調整瀏覽器的大小時,DIV一直在移動

繼承人的網站:

http://www.buymycookies.org/index.html

這是我的代碼:

<div style="position:absolute; top:280; left:560"> 
<iframe src="main.html" name="main" width="240" height="240" marginwidth="0" marginheight="0" frameborder="0" scrolling="auto" scrolling=auto allowtransparency=true> 
</iframe> 
</div> 

作爲一個側面說明,我希望能夠控制在我的資料覈實去,因爲它需要留在佈局的框內。

謝謝你的幫忙!

回答

0

位置絕對的風格相對於整個頁面的大小的元素。因此當頁面變大時,div移動到左側(left:560)。你可以使用相對位置來代替:

margin-top: -530px; 
position: relative; 

position: relative; 
top: -530px; 

margin-left: -120px;(because this div has a width of 240px) 
position: absolute; 
left: 50%; 
+0

哦,我的gosssh!是!這正是我想要的,非常感謝你! – user1972697

相關問題