"Untitled"
Bootstrap 4.1.1 Snippet by divyalahad

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
<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="dark placeholder">
<div class="breadcrumb">
<a href="#">One</a><a href="#">Two</a><a href="#">Three</a><a href="#">Four</a>
</div>
<p></p>
<div class="breadcrumb">
<a href="#">One</a><a href="#">Two</a><a href="#">Three</a><a href="#">Four</a><input type="text" placeholder="Search…">
</div>
</div>
<div class="light placeholder">
<div class="breadcrumb">
<a href="#">One</a><a href="#">Two</a><a href="#">Three</a><a href="#">Four</a>
</div>
<p></p>
<div class="breadcrumb">
<a href="#">One</a><a href="#">Two</a><a href="#">Three</a><a href="#">Four</a><a href="#"Five</a><input type="text" placeholder="Search…">
</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,
.breadcrumb a {
height: 33px;
display: inline-block;
}
.breadcrumb {
margin: 0;
padding: 0;
border-radius: 3px;
border-width: 1px;
border-style: solid;
overflow: hidden;
}
.breadcrumb a {
text-rendering: optimizeLegibility;
line-height: 33px;
font-size: 12px;
font-weight: 300;
text-decoration: none;
padding: 0 10px 0 20px;
position: relative;
}
.breadcrumb a:first-child {
padding-left: 16px;
}
.breadcrumb a:last-child,
.breadcrumb input[type=text] {
padding-right: 16px;
}
.breadcrumb a:after,
.breadcrumb a:before {
content: '';
display: block;
width: 0;
height: 0;
border-top: 17px solid transparent;
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: