JSFiddle - React, Tailwind, and code Playground

by Dyaa Eldin Moustafa

HTML

<div class="box"></div>

CSS

.box{
   	position: relative;
	background: #88b7d5;
}

.box:before{
	top: -35px;
    margin-left:-25px;
    -webkit-transform: rotate(45deg);
	left: 50%;
    width:50px;
    height:50px;
    background:#ccc;
    content:"";
    position:absolute;
    display:block;
    border-radius:0 0 10px 0;
}