JSFiddle - React, Tailwind, and code Playground
by kshep92
HTML
<div class="bubble" style="background: red; border-color: red;">test</div>
<div class="bubble" style="background: green; border-color: green;">test</div>
CSS
.bubble {
margin: 50px;
padding: 50px;
position: relative;
box-shadow: 0 0 6px #000;
}
.bubble:after {
content: "";
position: absolute;
top: 100%;
left: 20px;
border-top: 20px solid blue;
border-top-color: inherit;
border-left: 20px solid transparent;
border-right: 20px solid transparent;
}