Shape Function
CSS Style
HTML
<div class="warpper">
<div class="shape"></div>
</div>
CSS
.shape{
width:200px;
height:200px;
background: lightgreen;
clip-path: polygon(0 60%,30% 30%, 70% 10% ,100% 50% ,70% 50% ,30% 70% ,0 80%);
}
<div class="warpper">
<div class="shape"></div>
</div>
.shape{
width:200px;
height:200px;
background: lightgreen;
clip-path: polygon(0 60%,30% 30%, 70% 10% ,100% 50% ,70% 50% ,30% 70% ,0 80%);
}