Horizontal and Vertical line with words in the middle
.box{_x000D_
background-image: url("https://i.stack.imgur.com/N39wV.jpg");_x000D_
width: 350px;_x000D_
padding: 10px;_x000D_
}_x000D_
_x000D_
/*begin first box*/_x000D_
.first{_x000D_
width: 300px;_x000D_
height: 100px;_x000D_
margin: 10px;_x000D_
border-width: 0 2px 0 2px;_x000D_
border-color: red;_x000D_
border-style: solid;_x000D_
position: relative;_x000D_
}_x000D_
_x000D_
.first span {_x000D_
position: absolute;_x000D_
display: flex;_x000D_
right: 0;_x000D_
left: 0;_x000D_
align-items: center;_x000D_
}_x000D_
.first .foo{_x000D_
top: -8px;_x000D_
}_x000D_
.first .bar{_x000D_
bottom: -8.5px;_x000D_
}_x000D_
.first span:before{_x000D_
margin-right: 15px;_x000D_
}_x000D_
.first span:after {_x000D_
margin-left: 15px;_x000D_
}_x000D_
.first span:before , .first span:after {_x000D_
content: ' ';_x000D_
height: 2px;_x000D_
background: red;_x000D_
display: block;_x000D_
width: 50%;_x000D_
}_x000D_
_x000D_
_x000D_
/*begin second box*/_x000D_
.second{_x000D_
width: 300px;_x000D_
height: 100px;_x000D_
margin: 10px;_x000D_
border-width: 2px 0 2px 0;_x000D_
border-color: red;_x000D_
border-style: solid;_x000D_
position: relative;_x000D_
}_x000D_
_x000D_
.second span {_x000D_
position: absolute;_x000D_
top: 0;_x000D_
bottom: 0;_x000D_
display: flex;_x000D_
flex-direction: column;_x000D_
align-items: center;_x000D_
}_x000D_
.second .foo{_x000D_
left: -15px;_x000D_
}_x000D_
.second .bar{_x000D_
right: -15.5px;_x000D_
}_x000D_
.second span:before{_x000D_
margin-bottom: 15px;_x000D_
}_x000D_
.second span:after {_x000D_
margin-top: 15px;_x000D_
}_x000D_
.second span:before , .second span:after {_x000D_
content: ' ';_x000D_
width: 2px;_x000D_
background: red;_x000D_
display: block;_x000D_
height: 50%;_x000D_
}
_x000D_
<div class="box">_x000D_
<div class="first">_x000D_
<span class="foo">FOO</span>_x000D_
<span class="bar">BAR</span>_x000D_
</div>_x000D_
_x000D_
<br>_x000D_
_x000D_
<div class="second">_x000D_
<span class="foo">FOO</span>_x000D_
<span class="bar">BAR</span>_x000D_
</div>_x000D_
</div>
_x000D_
This is also answered in https://stackoverflow.com/a/57279326/6569224