"Bootstrap Process Steps Breadcrumb + JUSTIFY"
Bootstrap 3.3.0 Snippet by prograk

1
2
3
4
5
6
7
8
9
10
11
12
13
14
<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">
<div class="row">
<ul class="breadcrumb">
<li class="completed"><a href="javascript:void(0);">about</a></li>
<li class="active"><a href="javascript:void(0);">business</a></li>
<li><a href="javascript:void(0);">gallery</a></li>
</ul>
</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
.breadcrumb {
padding: 0px;
background: transparent;
list-style: none;
overflow: hidden;
margin-top: 20px;
margin-bottom: 20px;
border-radius: 4px;
}
.breadcrumb>li {
display: table-cell;
vertical-align: top;
width: 1%;
}
.breadcrumb>li+li:before {
padding: 0;
}
.breadcrumb li a {
color: white;
text-decoration: none;
padding: 10px 0 10px 45px;
position: relative;
display: inline-block;
width: calc( 100% - 10px );
background-color: hsla(0, 0%, 83%, 1);
text-align: center;
text-transform: capitalize;
}
.breadcrumb li.completed a {
background: brown;
background: hsla(153, 57%, 51%, 1);
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments:

muy bonito y funcional, muchas gracias por compartir! :D

Jonathan A. Quiñones Dávalos () - 8 years ago - Reply 0