I was trying to make a simple circle buttons to represent pizza size buttons but I'm having trouble centering the text if anyone has a solution, you can text it out your self I've tried using padding, stretches circle as well margin, no response Not sure what I'm doing wrong, thanks
.pizzaOptions { margin: 1em; padding-top: 1%; width: 60%; margin: auto; display: flex; flex-wrap: wrap; align-self: center; align-content: space-between; } input { opacity: 0; } .size { display: inline-block; margin: 1em; height: 100px; width: 100px; border: 15px #333 solid; border-radius: 50%; margin: auto; } span { display: table-cell; text-align: center; vertical-align: middle; font-family: 'Montserrat', sans-serif; } #small { font-size: 1em; width: 100px; height: 100px; } #medium { margin: 20px; font-size: 1.5em; width: 150px; height: 150px; } #large { font-size: 2em; width: 200px; height: 200px; } <div class="pizzaOptions"> <label class="hover size" for="c1" id="small"> <input class="items right" onclick="findTotal()" type="radio" name="size" value="4.00" id="c1"><span>SMALL <div class="displaySize"> 4"</div> <div class="displayPrice">£4.00</div></span> </label> <label class="hover size" for="c2" id="medium"> <input class="items right" onclick="findTotal()" type="radio" name="size" value="6.00" id="c2"><span>MEDIUM <div class="displaySize"> 6"</div> <div class="price">£6.00</div></span> </label> <label class="hover size" for="c3" id="large"> <input class="items right" onclick="findTotal()" type="radio" name="size" value="9.00" id="c3"><span>LARGE <div class="displaySize"> 9"</div> <div class="price">£9.00</div></span> </label> </div>