2
I’m trying to center a radio item - a selection "ball" with an image.
But I’ve tried several resources using CSS and I’m not getting it.
You know what feature I can use to achieve this alignment?
<tr>
<!-- #### BUG: Arrumar alinhamento entre a bolinha e a imagem. -->
<td>Bandeira:</td>
<td>
<div class="celula-imagens">
<input type="radio" name="bandeira"><img src="img/visa-logo.png">
</div>
<div class="celula-imagens">
<input type="radio" name="bandeira"><img src="img/mastercard-logo.png">
</div>
<div class="celula-imagens">
<input type="radio" name="bandeira"><img src="img/american-express-logo.png">
</div>
</td>
</tr>
just an observation that some not-so-current versions of the browsers may not support the
display: flex
– Ricardo Pontual
Opa, very well punctuated. I edited my answer to contemplate retrocompatibility.
– Kiss