We create Google sites on which we will place the form created in Bootstrap.
The width we have to put in the form is 500px;
The code is fine, but <div class="form-inline">it only works with a specific screen size, and we need to specify this size, where should we change it?
Thanks.
<div class="form-group">
<div class="form-inline">
<div class="form-group">
<label class="sr-only" for="Inputtel">Telefone</label>
<input type="tel" class="form-control" id="Inputtel" placeholder="Telefone">
</div>
<div class="form-group">
<label class="sr-only" for="InputCPFCNPJ">CPF ou CNPJ</label>
<input type="number" class="form-control" id="InputCPFCNPJ" placeholder="CPF ou CNPJ">
</div>
</div>
</div>
source
share