JSFiddle - React, Tailwind, and code Playground
HTML
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>...</title>
<style>
p{positionelative;
border: red 1px solid;
background: white;
}
h1{
position: absolute;
left:30px;
top:-10px;
background: white;
padding:0 10px;
}
</style>
</head>
<body>
<div>
<p><h1>h1</h1>text</p>
</div>
</body>
</html>