JSFiddle - React, Tailwind, and code Playground
HTML
<div class="container">
<div class="label">Hello</div>
<input type="text">
</div>
CSS
.container {
border: 1px solid blue;
border-radius: 3px;
width: 100px;
height: 22px;
font-size: 10px;
position: relative;
}
.label {
position: absolute;
top: -7px;
left: 6px;
background-color: white;
}
input {
width: calc(100% - 7px);
}