2014-07-12 10:03:13 +02:00
---
2015-08-15 07:45:55 +02:00
layout: docs
2014-07-12 10:03:13 +02:00
title: Breadcrumb
2015-08-06 02:47:45 +02:00
group: components
2014-07-12 10:03:13 +02:00
---
Indicate the current page's location within a navigational hierarchy.
2015-08-21 06:57:49 +02:00
Separators are automatically added in CSS through [`::before` ](https://developer.mozilla.org/en-US/docs/Web/CSS/::before ) and [`content` ](https://developer.mozilla.org/en-US/docs/Web/CSS/content ).
2014-07-12 10:03:13 +02:00
{% example html %}
< ol class = "breadcrumb" >
< li class = "active" > Home< / li >
< / ol >
< ol class = "breadcrumb" >
< li > < a href = "#" > Home< / a > < / li >
< li class = "active" > Library< / li >
< / ol >
< ol class = "breadcrumb" style = "margin-bottom: 5px;" >
< li > < a href = "#" > Home< / a > < / li >
< li > < a href = "#" > Library< / a > < / li >
< li class = "active" > Data< / li >
< / ol >
{% endexample %}