2012-08-30 43 views

回答

-1

你可以用基於「寬度」和「左」的百分比來實現。 我修改你的榜樣,現在容器具有相等的利潤(不10px的韌):

http://fiddle.jshell.net/3bbg8/

0

沒有必要使其複雜化:

在覆蓋:

margin-right: 20px 

20px,而不是10px,因爲左側的偏移量爲10px。

按照代碼方式,刪除left: 10pxmargin-right: 20px將其替換爲margin: 0 10px看起來會更好。

0
#background { 
    background-repeat:repeat-x; 
    position:relative; 
    z-index:1; 

} 
#overlay { 
    position:relative; 
    top:-100px; 
    margin-right:20px; 
    left:10px; 
    z-index:10; 
    background-color:#FFFFFF; 
}​