I'm attempting to add a 'spacer' between buttons on my website using the word "or" with a vertical line centered above and below it. I've tried
HTML
<div class="footer-btn-wrap">
<div class="decor"><a href="... </div>
<div class="or">
<div class="above"></div>
<h4>or</h4>
<div class="below"></div>
</div>
<div class="decor"><a href="... </div>
</div>
CSS
.or { // name of containing div}
.or .above { border: 1px left solid }
.or .below { border: 1px left solid }
but I'm having trouble getting them to be perfectly centered.
Visually, I want something like this between the buttons
Additionally, in mobile view I'd like the lines to go through horizontally (as the buttons will be stacked).