JSFiddle - React, Tailwind, and code Playground

by mlms13

HTML

<p>This is a text bubble!</p>

CSS

p {
    background: #c91f2c;
    background-image: -webkit-linear-gradient(#f45, #b12);
    border-radius: 50px;
    box-shadow: 1px 1px 12px rgba(0,0,0,0.4);
    color: #fff;
    font: 24px/24px Arial, sans-serif;
    padding: 16px 8px;
    position: relative;
    text-align: center;
    text-shadow: -1px -1px 1px #900;
    width: 300px;
}

p::before {
    border-color: transparent #b12;
    border-style: solid;
    border-width: 0 0 32px 32px;
    bottom: -32px;
    content: "";
    position: absolute;
    left: 102px;
}

p::after {
    border-color: transparent #b12;
    border-style: solid;
    border-width: 0 32px 32px 0;
    bottom: -32px;
    content: "";
    position: absolute;
    left: 70px;
}