My goal is to align characters in the center of a span
.
CSS
span{border-radius:10px; width:20px; height:20px; color:#fff; background:#cc0000; text-align:center; line-height:20px; display:block;}
HTML
<span>+</span><br>
<span>-</span>
Upon inspection, you can notice that the characters are slightly off-center towards the bottom right. Is there a way to achieve perfect center alignment?