I'm experiencing issues with the Bootstrap 3 Datepicker v4 as something seems to be breaking and I can't seem to fix it. My guess is that the input is causing a CSS issue.
<div class="container">
<div class="row">
<div class='col-sm-6'>
<div class="form-group">
<div class='input-group date' id='datetimepicker1'>
<input type='text' class="form-control" />
<span class="input-group-addon">
<span class="glyphicon glyphicon-calendar"></span>
</span>
</div>
</div>
</div>
<script type="text/javascript">
$(function () {
$('#datetimepicker1').datetimepicker();
});
</script>
</div>
</div>
RESULT:
Is there a specific property I need to adjust in order to eliminate the margin between the span element and the input field?