2012-06-26 23 views
0

你好的人,我堅持的一個問題 我有100%無變焦頭看起來像這樣:CSS錯誤

http://i.stack.imgur.com/S8tp8.png

但是當我變焦頭轉到右:

http://i.stack.imgur.com/BapBA.png

HTML:

<body> 
    <div id="header"> 
<div id="logo"></div> 
    </div> 
</body> 

CSS:

body { 
background:url(images/bg.png); 
margin:0; 
padding:0;} 

#header { 

margin-bottom:170px; 
background:url(images/headerBg.png); 
height:386px; 
width:100%;} 

#header #logo{ 
min-width:990px; 
height:207px; 
width:990px; 
background:url(images/logo.png); 
margin:0 auto;} 

回答

1

min-widthbody按你的頁面寬度。這樣寫:

body{ 
min-width:990px; 
}