JSFiddle - React, Tailwind, and code Playground
by easwee
HTML
<div class="tooltip">
<span class="arrow"></span>
Tooltip text that wants to be your friend.
</div>
CSS
body {font-family:Arial, helvetica, Sans-Serif;}
.tooltip {position:relative;padding:10px;background:#ccc;border-bottom:1px solid #000;}
.arrow {width:10px;height:10px;position:absolute;bottom:-6px;border-left:1px solid #000;border-bottom:1px solid #000;background:#ccc;
-webkit-transform: rotate(-45deg);
-moz-transform: rotate(-45deg);
transform: rotate(45deg);