I would like to have a progressbar with left and right justified badges on either side that is centered within a row-fluid.
Similar to this:
<img src="https://s21.postimg.org/yg3igspaf/example.png" alt="" />Here is what I have so far which is not working.
<div class='row-fluid'>
<div class="span12" style="">
<span class="badge" style="position: relative;">X</span>
<div class="progress" style="position: relative; margin: 0 auto;width:50%;">
<div class="bar" style="width:10%;"></div>
</div>
<span class="badge" style="position: relative;">0</span>
</div>
</div>