2013-06-05 66 views
0

我這裏有一個小提琴:孩子DIV不繼承父曲線邊界

http://jsfiddle.net/45jQm/6/

我怎麼要還彎曲徽標部分沒有指定?似乎這應該是可能的。下面是代碼...

#wrapper { 
    position: relative; 
    background-color:rgba(255,255,255,0.5); 
    width:200px; 
    min-height: 985px; 
    margin: 0 auto; 
    margin-top: 10px; 
    margin-bottom: 20px; 
    box-shadow: 10px 0px 10px -7px #333, -10px 0px 10px -7px #333; 
    -moz-border-radius: 20px; 
    -webkit-border-radius: 20px; 
    -khtml-border-radius: 20px; 
    border-radius: 20px; 
} 


.logo { 
    position: static; 
    background-color:rgba(0,0,102,0.7); 
    padding-top: 10px; 
} 

回答

3
.logo { 
    .... 
    border-radius: inherit; 
    border-bottom-right-radius: 0; 
    border-bottom-left-radius: 0; 
} 

http://jsfiddle.net/45jQm/11/

+0

,對於頂級的作品,同時也繼承使得底部彎曲。對於徽標,我只想要頂部彎曲。 – user2448137

+0

答覆已更新。 – manji