JSFiddle - React, Tailwind, and code Playground
by Ayri Rin
HTML
<div class="talkbubble"></div>
CSS
.talkbubble {
width: 120px;
height: 80px;
background: #afbad1;
position: relative;
-moz-border-radius: 15px;
-webkit-border-radius: 15px;
border-radius: 15px;
}
.talkbubble:before {
content: "";
position: absolute;
border: 0 solid transparent;
border-top: 6px solid #afbad1;
border-radius: 20px 0 0 0;
top: 65px;
left: 115px;
width: 15px;
height: 15px;
-webkit-transform: rotate(-120deg);
-moz-transform: rotate(-120deg);
-ms-transform: rotate(-120deg);
-o-transform: rotate(-120deg);
}