JSFiddle - React, Tailwind, and code Playground

HTML

<div>
    <h1><span>Div title</span></h1>
</div>

CSS

div{
    border: 1px solid #000;
    width: 200px;
    height: 200px;
}

div h1{
    text-align: center;
    margin-top: -10px;
    height: 20px;
    line-height: 20px;
    font-size: 15px;
}

div h1 span{
    background-color: white;
}
}