2016-08-21 112 views

回答

-1

試試這個

HTML:

<div class="shape"></div> 

CSS:

.shape{ 
    background: #074b7e; 
    width: 300px; 
    height: 150px; 
    overflow: hidden; 
    position: relative; 
} 

.shape:before{ 
    content: ''; 
    width: 150px; 
    height: 150px; 
    background: #fff; 
    position: absolute; 
    top: 0; 
    right: -75px; 
    border-radius: 100%; 
} 

例子:https://jsfiddle.net/s2oew522/

+0

非常感謝你 –

+0

@MinaMedhat請將此答案標記爲接受。 –