Returning to html can be tricky...I often forget the basics.
I'm trying to center the spans inside this div. Not sure if my structure is correct, any suggestions are welcome!
Check out this jsfiddle link for reference
.define_link {
background: rgba(0,0,0,.3);
border-radius: 10px;
padding: 5px;
width: 200px;
margin: 5px auto;
font-size: 20px;
display: inline-block;
font-weight: bold;
text-align: center;
}
.pagination {
width:100%;
margin:auto
}
<div class="pagination">
<span class="define_link"><a href="">previous</a></span>
<span class="current">Page 2 of 88.</span>
<span class="define_link"><a href=""></a>next</span>
</div>