I'm currently working on designing a CSS button that will be placed in the top left corner and serve as a back button to the previous page. However, I am facing challenges when it comes to centering the arrow or text perfectly in the middle of the button. Despite trying various methods, I haven't been able to find a solution yet. Any assistance with this would be greatly appreciated.
.goback {
position: absolute;
top: 20px;
left: 20px;
z-index: 999;
font-size: 60px;
display: table-cell;
vertical-align: middle;
width: 80px;
height: 80px;
border-radius: 50%;
border: none;
background: #0077be;
color: #ffffff;
}
<button class="goback">‹</button>