0
Watch the image;
I need to put the letter "A" here in the middle as it shows the arrow, but I do not know how to do it, I have tried several ways. The code below is my HTML:
<div class="form-group">
<label for="inputEmail3" class="col-sm-2 control-label">Período:</label>
<div class="row">
<div class="col-sm-2">
<input autocomplete="off" id="idPeriodoInicio" class="form-control monthPicker listar_uj" name="periodoInicio" id="periodoInicio" placeholder="Período Inicial">
</div>
<div class="col-sm-2">
<input autocomplete="off" id="idPeriodoFim" class="form-control monthPicker listar_uj" name="periodoFim" id="periodoFim" placeholder="Período Final">
</div>
</div>
</div>
Instead of using Row’s and col’s, try using the form-inline class in the components.
– Augusto Henrique
how can I do this?
– wladyband
I’ll answer as a question.
– Augusto Henrique