"Progress bars Responsive"
Bootstrap 3.2.0 Snippet by TomCrowley

<link href="//netdna.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css"> <script src="//netdna.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script> <script src="//code.jquery.com/jquery-1.11.1.min.js"></script> <!------ Include the above in your HEAD tag ----------> <div class="container"> <div class="row"><br /> <div class="col-md-12"> <div class="progress"> <div class="one success-color"></div><div class="two no-color"></div><div class="three no-color"></div> <div class="progress-bar success-color" style="width: 26%;"></div> </div> </div> </div> </div>
.one, .two, .three{ position:absolute; margin-top:-10px; z-index:1; height:40px; width:40px; border-radius:25px; } .one{ left:25%; } .two{ left:50%; } .three{ left:75%; } .primary-color{ background-color:#4989bd; } .success-color{ background-color:#5cb85c; } .danger-color{ background-color:#d9534f; } .warning-color{ background-color:#f0ad4e; } .info-color{ background-color:#5bc0de; } .no-color{ background-color:inherit; }

Related: See More


Questions / Comments: