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%">&nbsp;</div>  <div class="progress">     <div class="progress-bar progress-bar-primary" style="width: 25%">25%</div>  </div>                  

i think this you, want.


Comments

Popular posts from this blog

javascript - Karma not able to start PhantomJS on Windows - Error: spawn UNKNOWN -

c# - Display ASPX Popup control in RowDeleteing Event (ASPX Gridview) -

Nuget pack csproj using nuspec -