-2
Hello, I would like to create a spacing in the options of my select, can someone explain to me how
<form method= "POST" class="mb-0" action="includes-site/enviar.php" id="formcadastro" >
<div>
<label>Primeiro Nome</label>
<input type="text" name="nome" class="form-control"id="nome">
</div>
<div>
<label>Email</label>
<input type="text" name="email" class="form-control" id="email">
</div>
<div>
<label>Telefone</label>
<input type="text" name="phone" class="form-control" id="phone" onkeypress="mascara(this)">
</div>
<label>Qual Melhor forma de atendimento?</label>
<select name="atendimento" id="Atendimento" class= "form-control">
<option value="" disabled selected>Clique e Selecione</option>
<option value="WhatsApp">Whatsapp</option>
<option value="Email">Email</option>
<option value="Ligação">Ligação</option>
</select>
<div>
<input type="submit" class="btn btn--primary btn--block mt-10" value="enviar">
</div>
<div>
<input type="hidden" name="titulo" value="<?php echo $tit;?>">
</div>
</form>
What kind of spacing do you need? Could you give an example of how you would like it to look?
– Woss