Could you please assist me in making these two buttons stick to the edge of the div using bootstrap grid?
If possible, could you also provide some explanation? I am currently trying to grasp how bootstrap grid works...
Here is my progress so far: https://ibb.co/iLDZSv - link to image
Below is the code snippet of what I have done:
<div class="row">
<div class="col-xs-6 col-sm-6">
<a href="#myTickets" data-toggle="tab" class="btn btn-default"><i
class="fa fa-arrow-left"></i> Go Back</a>
</div>
<div class="col-xs-6 col-sm-3">
<p></p>
</div>
<div class="col-xs-6 col-sm-3">
<a class="btn btn-danger"><i class="fa fa-lock"></i> Close Ticket</a>
</div>
</div>