JSFiddle - React, Tailwind, and code Playground

by duopixel

HTML

<div id="comment">
    <div id="text">
        <p>Oele bla</p>
        <p>Lorem</p>
    </div>
</div>

CSS

p:not(:last-child) {
    margin: 0 0 15px;
}
#comment {
    padding-right: 90px;
}
#text {
    position: relative;
    padding: 10px;
    border: solid 1px green;
    border-radius: 7px;
    -webkit-transform: translate3d(0, 0, 0);
}
#text:after {
    content: ' ';
    display: block;
    width: 15px;
    height: 50px;
    background: #fff;
    border: solid 1px green;
    position: absolute;
    top: 13px;
    right: -17px;
    -webkit-transform: translate(-30px, 0) skew(-60deg) rotate(-20deg);
}