I want to draw a centered line on the back of a text. My code works on google chrome, but not on safari and IE. There are many tutorials about this, but all of them has a span surround the text. is there anyway to draw the line without span? Below is my code:
<h1>Header</h1>
h1{overflow: hidden;text-align: center;}
h1:before, h1:after {position: absolute;
top: 51%;
overflow: hidden;
width: 50%;
height: 2px;
content: '\a0';
background-color: #e6ebfa;}
h1:before {margin-left: -52%; text-align: right;}
h1:after {margin-left: 2%;}