JSFiddle - React, Tailwind, and code Playground
by bumbay
HTML
<div class="speech-bubble speech-bubble-bottom">Нажмите, чтобы удалить комментарий</div>
CSS
.speech-bubble {
position: relative;
background-color: #292929;
padding: 10px;
color: white;
display: inline-block;
text-align: center;
border-radius: 3px;
font: 10pt/15px Trebuchet MS;
}
.speech-bubble:after {
content: '';
position: absolute;
width: 0;
height: 0;
border: 7px solid;
}
/* Position the Arrow */
.speech-bubble-top:after {
border-bottom-color: #292929;
left: 50%;
bottom: 100%;
margin-left: -7px;
}
.speech-bubble-right:after {
border-left-color: #292929;
left: 100%;
top: 50%;
margin-top: -7px;
}
.speech-bubble-bottom:after {
border-top-color: #292929;
top: 100%;
left: 50%;
margin-left: -7px;
}
.speech-bubble-left:after {
border-right-color: #292929;
top: 50%;
right: 100%;
margin-top: -7px;
}