I want to add a decent line around my title
for example
------ Title ------
but I want the line be continued and decent
is there any library or CSS I can use for this requirement?
You before
in css like this:
.wrapper{
width: 25%;
}
span {
display: block;
margin-bottom: 15px;
position: relative;
text-align:center;
}
span:before {
content: "";
top: 8px;
left: 0;
width: 100%;
height: 2px;
background-color: #d6dde4;
display: inline-block;
position: absolute;
}
span b {
background-color: #fff;
padding: 0 10px;
font-size: 14px;
color: #39335b;
position: relative;
display: inline-block;
}
<div class="wrapper">
<span>
<b> title</b>
</span>
</div>