Imagine you have two buttons that are supposed to be near each other. Take a look at the following code:
<div class="form-inline move_down">
<div class="col-md-3 col-6">
<button class="btn btn-primary btn-sm move_right_component" type="submit" >NEW
<i class="fa fa-plus"></i></button>
</div>
<div class="col-md-4 col-6">
<button class="btn btn-default btn-sm" type="button" >BACK<i class="fa fa-arrow-left"></i></button>
</div>
</div>
This is how the buttons appear, but I want to make them closer together. I'd like the first button to appear at the end of the first div, and the second button to start at the beginning. Right now, there is too much space between them. Can anyone help me with this?