center progress-bar in Twitter Bootstrap -
the progress bar, blue shading, left aligned, i'd centered:
<link rel="stylesheet" href="//cdn.jsdelivr.net/bootstrap/latest/css/bootstrap.css"> <link rel="stylesheet" href="//cdn.jsdelivr.net/bootstrap/latest/css/bootstrap-theme.css"> <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script> <div class="progress"> <div class="progress-bar progress-bar-primary text-center" style="width: 25%">25%</div> </div> <div class="progress text-center"> <div class="progress-bar progress-bar-primary" style="width: 25%">25%</div> </div> <div class="progress" align="center"> <div class="progress-bar progress-bar-primary" style="width: 25%">25%</div> </div> <div class="progress"> <div align="center" class="progress-bar progress-bar-primary" style="width: 25%">25%</div> </div> <p>come think of it, might work:</p> <div class="progress pull-left" style="width:37.5%"> </div> <div class="progress"> <div class="progress-bar progress-bar-primary" style="width: 25%">25%</div> </div>
i think this you, want.
Comments
Post a Comment