First, this is my goal
and I made this far using Stack Overflow.
What should I do to make line between news and types?
And why does News and Types goes in one line though I used
<span>
tag?
.news_title h3{
overflow: hidden;
text-align: center;
}
.news_title h3:before,
h3:after {
background-color: #000;
content: "";
display: inline-block;
height: 1px;
position: relative;
vertical-align: middle;
width: 50%;
}
.news_title h3:before{
right: 0.5em;
margin-left: -50%;
}
.news_title h3:after{
left: 0.5em;
margin-right: -50%;
}
<div class="news_title">
<h3><span>NEWS</span></h3>
<span>Types</span>