0
http://rssreaderbg.net/pubsubbub/example/cssexam/index.php 點擊三葉草。動畫文字顯示後。 在更大的決議文本更改他的position.It,因爲 position: absolute; top: 35px; left: 400px;
但我不知道如何以另一種方式定位它。 如果我設置了一些邊距或填充,整個頁面向下移動。文字在不同分辨率下移動
http://rssreaderbg.net/pubsubbub/example/cssexam/index.php 點擊三葉草。動畫文字顯示後。 在更大的決議文本更改他的position.It,因爲 position: absolute; top: 35px; left: 400px;
但我不知道如何以另一種方式定位它。 如果我設置了一些邊距或填充,整個頁面向下移動。文字在不同分辨率下移動
你有position: absolute;
引用體(即你沒有帶設置任何其他地方)
如果你把
position: relative;
CSS中你的頭,它應該絕對相對位置到那個div,所以調整窗口大小不會移動文本。
#header {
background: url("headers.jpg") repeat-x scroll 0 0 transparent;
position: relative; /*add this line in*/
height: 139px;
margin: 0 auto;
width: 990px;
}
非常感謝! – lam3r4370 2011-02-07 18:44:53