JSFiddle - React, Tailwind, and code Playground
by BinaryAcid
HTML
<br />
<div class="container">
Test Container
</div>
CSS
.container {
margin-left: 15px;
width: 200px;
background: #FFFFFF;
border: 1px solid #CAD5E0;
padding: 4px;
position: relative;
min-height: 200px;
}
.container:after {
content: '';
display: block;
position: absolute;
top: 10px;
left: 100%;
width: 0;
height: 0;
border-color: transparent transparent transparent #CAD5E0;
border-style: solid;
border-width: 10px;
}
.container:before {
content: '';
display: block;
position: absolute;
top: 9px;
left: 100%;
width: 0;
height: 0;
border-color: transparent transparent transparent #f00;
border-style: solid;
border-width: 11px;
}