"Progress bars Responsive"
Bootstrap 3.3.0 Snippet by balaji119

<link href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css"> <script src="//maxcdn.bootstrapcdn.com/bootstrap/3.3.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"> <hr/> <div class="progress verticalrotate"> <div class="one primary-color"></div> <div class="two primary-color"></div> <div class="three primary-color"></div> <div class="four primary-color"></div> <div class="progress-bar" style="width: 10%;"></div> </div> </div>
.one, .two, .three{ position:absolute; margin-top:-10px; z-index:1; height:40px; width:40px; border-radius:25px; } .one{ left:-1%; } .two{ left:20%; } .three{ left:40%; } .four{ left:60%; } .primary-color{ background-color:#4989bd; } .verticalrotate { transform: rotate(90deg); transform-origin: left top; }

Related: See More


Questions / Comments: