1. First look at the screenshot
picture description
I want to keep a straight line between the left side and the right side of the input box
and a straight line on the right
2. The static box
code of bootstrap is used as follows:
<div class="form-group">
<label for="task_begintime" class="col-sm-3 control-label"></label>
<div class="col-sm-9 input-group date " id="datepicker1" >
<input type="text" class="form-control" id="task_begintime" name="task_begintime">
<span class="input-group-addon col-sm-1">
<i class="glyphicon glyphicon-calendar"></i>
</span>
</div>
</div>
<div class="form-group">
<label for="task_endtime" class="col-sm-3 control-label"></label>
<div class="col-sm-9">
<input type="text" class="form-control" id="task_endtime" name="task_endtime">
</div>
</div>
4. I don"t know much about the length setting and relative relationship of bootstrap. For friends you have met, please give me a hint
.