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;
}