html - Color curve - CSS -


how can using html , css:

enter image description here

you can use circle inside parent container , hide unwanted section. no need of gradient or :after or :before

.wrap {    background-color: #0f7107;    height: 140px;    width: 310px;    position: relative;    overflow: hidden;  }  .circle {    width: 250px;    height: 250px;    border-radius: 50%;    background: #0d3106;    position: absolute;    right: -100px;    top: -50px;  }
<div class="wrap">    <div class="circle"></div>  </div>


Comments

Popular posts from this blog

toolbar - How to add link to user registration inside toobar in admin joomla 3 custom component -

linux - disk space limitation when creating war file -