2015-11-26 01:01:18 +03:00
---
layout: docs
title: Breadcrumb
group: components
---
2015-12-06 16:56:59 +03:00
[//]: # DO NOT EDIT IT WILL BE OVERWRITTEN - copy of bootstrap documentation generated by grunt docs-copy-bootstrap-docs
{% callout info %}
**Bootstrap Reference Documentation**
This is reference documentation from < a href = "http://getbootstrap.com" > Bootstrap< / a > .
It is being rendered with Material Design for Bootstrap to demonstrate default styling.
See addons(TODO: add link) for additional Material Design elements.
{% endcallout %}
2015-11-26 01:01:18 +03:00
Indicate the current page's location within a navigational hierarchy.
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 ).
{% 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 %}