0

我在这里有一个小提琴:

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;
} 
4

1 回答 1

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

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

于 2013-06-05T20:36:28.617 回答