0
I am building a form and I am having trouble organizing the form components the way I would like.
When I use the class col-md
bootstrap components are getting all messed up and when I move the size of the fields by CSS, when responsiveness is used the components are all misaligned.
How best to handle the widths of the components?
I would like to increase the size of Dropdown and also Input Text, leaving all components on the same line and responsibly.
<!-- MENU -->
<div class="page-bar">
<ul class="page-breadcrumb">
<li>
<a href="/Pais/Index"> Pais </a>
<i class="fa fa-circle"></i>
</li>
</ul>
</div>
<!-- MENU -->
</br>
<form class="form-inline" role="form">
<!-- BOTAO NOVO -->
<div class="form-group">
<a href="javascript:;" class="btn red">
Novo
<i class="fa fa-user"></i>
</a>
</div>
<!-- DROPDOWN CAMPOS PESQUISA -->
<div class="form-group">
<select class="form-control" id="dropdownColunasPesquisa">
<option>Todos...</option>
<option>Handle</option>
<option>Descrição</option>
<option>Sigla</option>
</select>
</div>
<!-- TEXTBOX PESQUISA -->
<div class="form-group">
<input type="text" class="form-control" placeholder="Pesquisar">
</div>
<!-- BOTAO PESQUISAR -->
<div class="form-group">
<a href="javascript:;" class="btn red">
Pesquisar
<i class="fa fa-user"></i>
</a>
</div>
</form>