mirror of
https://github.com/twbs/bootstrap.git
synced 2024-12-04 16:24:22 +01:00
c064eef67b
- Simpler main nav on all pages - Back to purple masthead on homepage instead of dark graphite - Active link styles on the main nav - Cleaned up sidebar nav - New docs layout name - Homepage copy edits - Updated bright purple docs color
25 lines
554 B
Markdown
25 lines
554 B
Markdown
---
|
|
layout: docs
|
|
title: Breadcrumb
|
|
group: components
|
|
---
|
|
|
|
Indicate the current page's location within a navigational hierarchy.
|
|
|
|
Separators are automatically added in CSS through `:before` and `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 %}
|