JSFiddle - React, Tailwind, and code Playground

by Renan Ribeiro Brando

HTML

<div id="container">
    <div id="label">I'm a Box</div>
</div>

CSS

#container {
	border: 1px solid black;
	position: relative;
}

#label {
  margin: 0 auto;
  margin-top: -10px;
	height: 20px;
	width: 100px;
	text-align: center;
  background-color:white;
}

body { padding: 25px; }