<h1 data-text="標題"></h1>
h1 {
position: relative;
}
h1::before {
content: '';
height: 5px;
position: absolute;
inset: 0;
background-color: #333;
margin: auto;
}
h1::after {
content: attr(data-text);
display: table;
position: absolute;
inset: 0;
background-color: #fff;
margin: auto;
}