Basically, I am trying to do this in order to get two buttons on the opposite side of the website, but on the same line. Here's what it looks like: 
And here is the code for what I have:
<div class="panel-footer"> <div class="previous"> <button type="button" class="btn btn-default btn-lg"> <span class="glyphicon glyphicon-chevron-left"></span> </button> </div> <div class="next"> <button type="button" class="btn btn-default btn-lg"> <span class="glyphicon glyphicon-chevron-right"></span> </button> </div> </div>
And here is the CSS for the previous and next classes.
.previous { text-align: left; } .next { text-align: right; }
Thanks. I use bootstrap if this helps.
source share