JSFiddle - React, Tailwind, and code Playground
by hoss
HTML
<div class="container">
<div class="tooltip">
<div class="text">Tooltip</div>
<div class="tip-wrapper">
<div class="tip">Hello world!</div>
</div>
</div>
</div>
CSS
.container {
width: 500px;
height: 200px;
display: block;
}
.tooltip {
display: inline-block;
cursor: pointer;
position: absolute;
bottom: 0px;
left: 0px;
}
.tooltip .tip-wrapper {
display: none;
position: absolute;
bottom: 0px;
left: 0px;
padding-bottom: 20px;
min-width: 200px;
}
.tooltip:hover .tip-wrapper {
display: block;
}
.tooltip .tip {
width: 100%;
height: 100%;
background: #b7b7b7;
padding: 5px 8px 5px 8px;
}