How to horizontally center the elements inside "scoreBox" ?
They are currently just left aligned.
.voteButtons {
display: inline-block;
text-align: center;
}
.HP {
display: inline-block;
text-align: center;
width: auto !important;
margin-left: 5px !important;
}
.scoreBox {
display: flex;
margin-top: 10px;
padding-top: 10px;
text-align: center;
width: auto !important;
}
<div class="scoreBox">
<span class="voteButtons"><img class="UpvoteButton" id="voteUp" src="..."><img class="DownvoteButton" id="voteDown" src="..."></span>
<div class="HP">
<%= post.upvotes - post.downvotes%> score </div>
</div>