JSFiddle - React, Tailwind, and code Playground
by sqiudward
HTML
<div id="region">
<div id="region-label">I'm a Box</div>
</div>
CSS
#region {
height: 100px;
width: 300px;
border: 1px solid black;
border-radius: 10px;
position: relative;
}
#region-label {
position: absolute;
top: -10px;
left: 20px;
height: 20px;
width: 100px;
background-color: white;
/* border: 2px solid red; */
text-align: center;
}
body { padding: 25px; }