Bootstrap - Breadcrumb

bootstrap

How can we make a breadcrumb?

<ol class="breadcrumb">
  <li><a href="#">Home</a></li>
  <li><a href="#">Library</a></li>
  <li class="active">Data</li>
</ol>

Separators are automatically added in CSS through :before and content. Notice the class 'breadcrumb' is added to the ol element and the class 'active' is added to the last li element.

Unless otherwise stated, the content of this page is licensed under Creative Commons Attribution-ShareAlike 3.0 License