2016-06-10 65 views

回答

4

.box { 
 
    background: #363742; 
 
    position: relative; 
 
    overflow: hidden; 
 
    height: 200px; 
 
} 
 

 
.box:before, 
 
.box:after { 
 
    border-radius: 1000px/50px; 
 
    position: absolute; 
 
    background: #fff; 
 
    height: 80px; 
 
    content: ''; 
 
    right: -50px; 
 
    left: -50px; 
 
    top: -50px; 
 
} 
 

 
.box:after { 
 
    bottom: -50px; 
 
    top: auto; 
 
}
<div class="box"></div>

+0

謝謝你!這就是我的意思 – johnny04501

+0

@ johnny04501歡迎你) –

+0

非常好 - 比我的回答更好! –

相關問題