0
When the page is expanded is working perfectly, but the moment I resize to the size of a mobile phone it breaks down the way I really want to, but the phocus is only working for the last field.
Using Bootstrap v3.2.0
What I did wrong?
HTML:
<div class="row">
<div class="col-md-12">
<div class="row">
<div class="col-md-12">
<div class="col-md-3">
<label class="display-label alinhamentoLabel">Razão Social</label>
<input type="text" name="razao_social" id="razao_social" placeholder="RAZÃO SOCIAL" required
value="" class="col-xs-12 col-sm-12 col-md-12"/>
</div>
<div class="col-md-3">
<label class="display-label alinhamentoLabel">Nome Fantasia</label>
<input type="text" name="nome_fantasia" id="nome_fantasia" placeholder="NOME FANTASIA" required
value="" class="col-xs-12 col-sm-12 col-md-12"/>
</div>
<div class="col-md-3">
<label class="display-label alinhamentoLabel">CNPJ/CPF</label>
<input type="text" name="cnpj_cpf" id="cnpj_cpf" placeholder="CNPJ/CPF" required
value="" class="col-xs-12 col-sm-12 col-md-12"/>
</div>
<div class="col-md-3">
<label class="display-label alinhamentoLabel">Inscrição Estadual</label>
<input type="text" name="inscricao_estadual" id="inscricao_estadual" placeholder="INSCRIÇÃO ESTADUAL"
value="" class="col-xs-12 col-sm-12 col-md-12"/>
</div>
</div>
</div>
</div>
</div>
The problem is that this is a form and will be loaded on mobile and when I click on the field it does not take the Focus to type in the field, only the last one is the field "State Registration" the others is as if it is blocked.
– Rodolfo Laurenti