0
Good morning to you all. Forgive me if this question has already been asked here but I have looked and found nothing similar. I’m putting together a survey to be used in smartphones and I have a few options ( input[type=radio] ) with extended Abels. This is breaking the lines unpleasantly (image attached). Could someone give me a hint on how to fix this, that is, the line below is aligned in the first row column ? Follow the attached HTML code. Thanks in advance.
<label>13. Qual é a categoria com maior dificuldade na compra ?</label>
<div>
<input type='radio' name='ck_categoria' value='1' class='checkbox-template' style='' onclick=''>RAÇÕES
<br>
<input type='radio' name='ck_categoria' value='2' class='checkbox-template' style='' onclick=''>MEDICAMENTOS
<br>
<input type='radio' name='ck_categoria' value='3' class='checkbox-template' style='' onclick=''>BIOLÓGICOS
<br>
<input type='radio' name='ck_categoria' value='4' class='checkbox-template' style='' onclick=''>HIGIENE E BELEZA (COSMÉTICOS)
<br>
<input type='radio' name='ck_categoria' value='5' class='checkbox-template' style='' onclick=''>LIMPEZA (AREIA, TAPETE, FRALDA E DESINFETANTES)
<br>
<input type='radio' name='ck_categoria' value='6' class='checkbox-template' style='' onclick=''>ACESSÓRIOS
<br>
<input type='radio' name='ck_categoria' value='7' class='checkbox-template' style='' onclick=''>SNACKS
<br>
<input type='radio' name='ck_categoria' value='8' class='checkbox-template' style='' onclick=''>OUTROS (favor especificar)
<br>
<input type='text' disabled id='ck_categoria_outros' name='ck_categoria_outros' data-msg='' class='form-control' value='' maxlength='200'>
</div>
Please search [Edit] your question by adding the HTML code to build a [mcve].
– Woss