"Order Tracking/Status"
Bootstrap 4.1.1 Snippet by ashokpulyala

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="p-4">
<h3>Order Tracking</h3>
<table class="table table-bordered track_tbl">
<thead>
<tr>
<th></th>
<th>S No</th>
<th>Status</th>
<th>Distibutor</th>
<th>Date/Time</th>
</tr>
</thead>
<tbody>
<tr class="active">
<td class="track_dot">
<span class="track_line"></span>
</td>
<td>01</td>
<td>Dispatched from distibutor address</td>
<td>Flipkart</td>
<td>31/07/2018 22:24:PM</td>
</tr>
<tr>
<td class="track_dot">
<span class="track_line"></span>
</td>
<td>01</td>
<td>Dispatched from distibutor address</td>
<td>Flipkart</td>
<td>31/07/2018 22:24:PM</td>
</tr>
<tr>
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
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.css");
.track_tbl td.track_dot {
width: 50px;
position: relative;
padding: 0;
text-align: center;
}
.track_tbl td.track_dot:after {
content: "\f111";
font-family: FontAwesome;
position: absolute;
margin-left: -5px;
top: 11px;
}
.track_tbl td.track_dot span.track_line {
background: #000;
width: 3px;
min-height: 50px;
position: absolute;
height: 101%;
}
.track_tbl tbody tr:first-child td.track_dot span.track_line {
top: 30px;
min-height: 25px;
}
.track_tbl tbody tr:last-child td.track_dot span.track_line {
top: 0;
min-height: 25px;
height: 10%;
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: