JSFIDDLE: https://jsfiddle.net/vezz82tr/
HTML Code:
<div>
Section 1...
</div>
<hr>
<div>
Section 2...
</div>
CSS Code:
hr {
border: 0;
border-top: 4px double white;
text-align: center;
}
hr:after {
content: '\2665';
display: inline-block;
position: relative;
top: -12px;
padding: 0 10px;
background: transparent;
color: white;
font-size: 18px;
}
As you can see, there is a icon in the middle of the hr. I want to give some space in the middle of the hr, so the lines will not be above or below the icon. Any suggestions?