html - Color curve - CSS -
how can using html , css:
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
Post a Comment