I have the print below:
I'mtryingtogiveamargin:0auto
inbotãosubmit
withinform
butnothingIdocentralizethatbutton.ButIcannotdotext-align:center
otherwiseitwillcenteralltheelementsoftheform.
Hereis**form**
:
<divclass="administrador">
<h1 class="titulos">Cadastro de Administrador</h1>
<form class="administradorCadastra">
<label class="labelPequeno">Tipo</label><select id="tipo" name="tipo" required class="typeTextMedio">
<option value="">Escolha o tipo</option>
<option value="s">Super Administrador </option>
<option value="c">Comum Administrador </option>
</select><br /> <br />
<label class="labelPequeno">Nome</label><input type="text" class="typeTextMedio" maxlength="200" id="nome" name="nome" required /> <br /> <br />
<label class="labelPequeno">Login</label><input type="text" class="typeTextMedio" maxlength="<?php echo $constantes->getLenLogin(); ?>" id="login" name="login" required /> <br /> <br />
<label class="labelPequeno">Senha</label><input type="password" class="typeTextMedio" maxlength="<?php echo $constantes->getLenSenha(); ?>" id="senha" name="senha" required /> <br /> <br />
<img class="spinner" src="../_img/_bannerImgs/spinner.gif" />
<input type="submit" class="btnAcesso" value="Cadastrar Administrador" /><br /> <br />
<label class="resposta"></label>
</form>
</div>
What to do?