I'm struggling to align the Cancel button to the right of the progress bar. I've attempted using float and display inline, but so far, no luck. Any suggestions would be greatly appreciated.
Here's the code snippet:
<div class="row">
<div class="progress progress-striped active" style="width: 500px; margin: 0px auto; height: 40px;">
<div id="progressbar" class="progress-bar progress-bar-success" role="progressbar" style="width:20%;"></div>
</div>
<div style="display: inline;"><button class="btn btn-warning">Cancel</button></div>
</div>
To see an example showcasing the issue, view this JSFiddle link.