2011-02-07 97 views

回答

1

你有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; 
} 
+0

非常感謝! – lam3r4370 2011-02-07 18:44:53