1
I’m building a form
that in some moments will have 3 columns and more than 4 lines but I am not able to do that when starting the new line the spacing between inputs is respected, see in the block "Identification of the Production Field", I tried some alternatives and did not solve, I tried something like:
<div class="clearfix"></div>
The form I have is like this:
<div class="widget-body">
<form>
<fieldset>
<legend>Identificação do Responsável Técnico</legend>
<div class="form-group">
<label>Agrônomo - Técnico *</label>
<input class="form-control" placeholder="Text field" type="text">
</div>
</fieldset>
<fieldset>
<legend>Identificação do Produtor</legend>
<div class="form-group">
<label>Nome *</label>
<input class="form-control" placeholder="Text field" type="text">
</div>
</fieldset>
<fieldset>
<legend>Identificação do Campo de Produção</legend>
<div class="row">
<div class="col-md-2 col-sm-2">
<label>ID *</label>
<input type="text" class="form-control" placeholder="Text field">
</div>
<div class="col-md-9 col-sm-9">
<label>Cooperante *</label>
<input type="text" class="form-control" placeholder="Text field">
</div>
<div class="col-md-1 col-sm-1">
<label>Zoom</label>
<input type="text" class="form-control" placeholder="Text field">
</div>
</div>
<br />
<div class="row">
<div class="col-md-2 col-sm-2">
<label>Propriedade *</label>
<input type="text" class="form-control" placeholder="Text field">
</div>
<div class="col-md-10 col-sm-10">
<label>Vistoria *</label>
<input type="text" class="form-control" placeholder="Text field">
</div>
</div>
<div class="row">
<div class="col-md-2 col-sm-2">
<label>UF *</label>
<input type="text" class="form-control" placeholder="Text field">
</div>
<div class="col-md-10 col-sm-10">
<label>Município *</label>
<input type="text" class="form-control" placeholder="Text field">
</div>
</div>
<div class="row">
<div class="col-md-10 col-sm-10">
<label>Categoria *</label>
<input type="text" class="form-control" placeholder="Text field">
</div>
<div class="col-md-2 col-sm-2">
<label>Campo *</label>
<input type="text" class="form-control" placeholder="Text field">
</div>
</div>
<div class="form-group">
<label>Espécie *</label>
<input class="form-control" placeholder="Text field" type="text">
</div>
</fieldset>
</form>
What generates an output like this:
What I need and I’m not getting, is this:
Please post your CSS as well
– leofontes