"Progress Status + ravi"
Bootstrap 4.1.1 Snippet by ravi7284007

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<link href="//maxcdn.bootstrapcdn.com/bootstrap/4.1.1/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">
<script src="//maxcdn.bootstrapcdn.com/bootstrap/4.1.1/js/bootstrap.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<!------ Include the above in your HEAD tag ---------->
<div class="container">
<h2 class="mt-3 mb-5 text-center">Progress Status</h2>
<div class="progressBar">
<div class="progressPoint current">
<span>1</span>
</div>
<div class="progressPoint current">
<span>2</span>
</div>
<div class="progressPoint current">
<span>3</span>
</div>
<div class="progressPoint current">
<span>4</span>
</div>
<div class="progressPoint ">
<span>5</span>
</div>
<div class="progressPoint">
<span>6</span>
</div>
<div class="progressPoint">
<span>7</span>
</div>
<div class="progressPoint">
<span>8</span>
</div>
<div class="progressLine"></div>
</div>
</div>
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
.progressBar {
position: relative;
margin: 5rem 0;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
}
.progressBar .progressLine {
height: 2px;
border: 2px dashed #1a4d00;
position: absolute;
left: 0;
width: 100%;
top: 50%;
-webkit-transform: translateY(-50%);
transform: translateY(-50%);
}
.progressBar .progressPoint {
width: 25px;
height: 25px;
position: relative;
z-index: 2;
border-radius: 50%;
background-color: #b4b4b4;
display: inline-block;
outline: 1px solid #b4b4b4;
border: 5px solid #fff;
}
.progressBar .progressPoint span {
position: absolute;
top: -60px;
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: