2016-08-21 1 views

Répondre

-1

Essayez cette

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

Exemple: https://jsfiddle.net/s2oew522/

+0

merci beaucoup –

+0

@MinaMedhat Veuillez marquer cette réponse comme accepter. –