JSFiddle - React, Tailwind, and code Playground

by mrnobody

HTML

<div class="bubble"> <em>По­здрав­ля­ем Вас с Днем за­щит­ни­ка Оте­че­ства!</em>

</div>

CSS

.bubble {
    margin: auto;
    position: relative;
    width: 80px;
    padding: 5px;
    background-color: #fff;
    font: .75em Tahoma, Arial, sans-serif;
    border: 4px solid #D9D9D9;
    color: #5B574E;
    border-radius: 10px;
}
    .bubble em {
        font-style: normal;
    }
.bubble:before, .bubble:after {
    content:"";
    position: absolute;
    top: 13px;
    right: 100%;
    border-style: solid;
    border-width: 15px 15px 15px 0;
    border-color: transparent #D9D9D9;
}
.bubble:after {
    top: 18px;
    border-width: 9px 9px 9px 0;
    border-color: transparent #fff;
}