"Progress bars Responsive"
Bootstrap 3.2.0 Snippet by rockingshubh1994

<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 primary-color"></div><div class="two primary-color"></div><div class="three no-color"></div><div class="four no-color"></div><div class="five no-color"></div> <div class="progress-bar" style="width: 37%;"></div> </div> </div> </div> </div>
.one, .two, .three, .four, .five{ position:absolute; margin-top:-10px; z-index:1; height:40px; width:40px; border-radius:25px; } .one{ left:0%; } .two{ left:25%; } .three{ left:50%; } .four{ left:75%; } .five{ left:100%; } .primary-color{ background-color:#4989bd; } .no-color{ background-color:inherit; }

Related: See More


Questions / Comments: