2014-03-06 51 views

回答

1

它與你的#DIV headguy420做。

您可以絕對位置他喜歡你,但你要他的寬度設置爲您所使用的背景圖片的寬度,寬度100%+你的絕對定位是造成問題

0

更新你的CSS到以下。這應該可以解決您的問題。

#jsn-header { 
background-color: #404040; 
color: #ccc; 
box-shadow: 0 5px 6px rgba(0,0,0,0.4) inset; 
position: relative;/*-----added css---*/ 
} 
#headguy420 { 
position: absolute; 
left: 1020px; 
top: -20px; 
width: 100%; 
height: 300px; 
background: url(/templates/jsn_escape_free/images/headguy.png) no-repeat; 
z-index: 999;/*-----added css---*/ 
}