JSFiddle - React, Tailwind, and code Playground
by julienbidoret
HTML
<div class="speech-bubble"><p>This is a speech bubble created using only CSS. No images to be found here...</p></div>
CSS
.speech-bubble {
position:relative;
width: 320px;
padding: 0;
margin: 3em;
background-color:#FFF;
color: #666;
font: normal 12px "Segoe UI", Arial, Sans-serif;
border-top: 3px solid rgba(0,0,0,0.095);
}
.speech-bubble p {
font-size: 1.25em;
}
.speech-bubble:before,
.speech-bubble:after {
content: "\0020";
display:block;
position:absolute;
top:-5px;
left:50%;
z-index:2;
width: 0;
height: 0;
overflow:hidden;
border: solid 6px transparent;
border-top: 0;
border-bottom-color:#FFF;
}
.speech-bubble:before {
top:-9px;
z-index:1;
border-bottom-color:rgba(0,0,0,0.095);
}