i'm trying to achieve a round button style, but because of the content within the button i keep getting an oval shape, like inside the picture:
Maybe i got the wrong idea and the content is not the problem, I'm looking for ideas :)
.ratingButton {
position: relative;
border: none;
font-size: 18px;
color: hsl(217, 12%, 63%);
margin: 0 18px;
background-color: hsla(216, 12%, 54%, 0.2);
padding: 1em;
border-radius: 50%; //tried w/ 50%, 100%, 100vh/vw, nothing seem to work.
}
<button class="ratingButton" id="fifth">5</button>