2013-06-05 87 views
0
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 
<html xmlns="http://www.w3.org/1999/xhtml"> 
<head> 
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 
<title>Untitled Document</title> 
<style type="text/css"> 
body { 
    margin: 0px; padding:0; 
    background:url(http://custdemos.com/synverse_portfolio/images/safercab_mobi.png) no-repeat left bottom; 
    height:100% 
} 
</style> 
</head> 

<body> 
<div class="do"> 
X Content 
</div> 
</body> 

</html> 

我需要將該背景圖像放在身體底部,如果有人知道這個問題,請聯繫我。css中的身體背景圖像位置問題

+0

謝謝Vucko和Swarnamayee終於得到了解決方案,請檢查我的答案。 – Sam

+0

background-attachment:固定 – Sam

回答

0

你需要給身體分高度。這裏是更正的jsFiddle link。以下也是修改css

body { 
    margin: 0px; 
    padding:0; 
    background:url(http://custdemos.com/synverse_portfolio/images/safercab_mobi.png) no-repeat left bottom; 
    min-height:500px; 
}