JSFiddle - React, Tailwind, and code Playground

by isherwood

HTML

<div class="parent">
    <div class="tooltip-wrapper">
        <div class="tooltip">Text runs wide blah blah and goes here</div>
    </div>
</div>

CSS

.parent {
    position: relative;
    width: 100px;
    height: 100px;
    background-color: red;
}
.tooltip-wrapper {
    position: absolute;
    left: 50%;
}
.tooltip {
    background-color: yellow;
    position: relative;
    top: 0;
    left: -50%;
    margin: 0;
    white-space: nowrap;
    padding: 5px 10px;
    width: auto;
}
body {
    padding: 100px;
}