1
I’m having trouble aligning the label with the radio input, the label is below and the input is above. I’m using html and css. wanted the two of them to be on the same line with the radio input behind the label.
code:
<h2>Em outros jogos, qual seu estilo de personagem/jogada favorito?</h2>
<input type="radio" name="selectxt" id="selectn4">
<label for="selectn4">Muito dano, porém lento, e resistente</label>
css:
input[type = radio]{
display: flex;
align-items: center;
}
well, maybe I just have to call the label somehow, but I don’t have that knowledge.
If you put the input after the label and without css it looks like?
– user60252
You are putting display:flex on Radio?
– hugocsl