Используйте <fieldset>
с <legend>
, который обеспечивает этот эффект изначально и может быть стилизован так, как вам нравится:
fieldset {
background-color:rgba(100,50,175,.2);
border-top:3px solid black;
}
legend {
text-align:center;
font-size:3em;
font-weight:bold;
background-color:rgba(100,100,255,.5);
padding:10px;
border:3px dashed #e0e0e0;
}
<fieldset>
<legend>This is the title</legend>
Other content here Other content here Other content here Other content here Other content here Other content here Other content here Other content here Other content here Other content here Other content here Other content here Other content here Other content here Other content here
<ul>
<li>Item</li>
<li>Item</li>
<li>Item</li>
</ul>
<p>Just about any HTML can go in here</p>
</fieldset>