Hello folks! welcome back to a new edition of our tutorial on Bootstrap. In this tutorial post, we will be discussing about Bootstrap breadcrumb.
Breadcrumbs are a great way for displaying hierarchy-based information for a website. In blogs, breadcrumbs can show publishing dates, categories, or tags. They indicate the current page location within a navigational hierarchy.
A breadcrumb in Bootstrap is an unordered list with .breadcrumb class. The separator is added automatically by CSS through the following class -
Breadcrumbs are a great way for displaying hierarchy-based information for a website. In blogs, breadcrumbs can show publishing dates, categories, or tags. They indicate the current page location within a navigational hierarchy.
A breadcrumb in Bootstrap is an unordered list with .breadcrumb class. The separator is added automatically by CSS through the following class -
.breadcrumb > li + li:before { color: #CCCCCC; content: "/ "; padding: 0 5px; }
Example
The following example below demonstrates Bootstrap breadcrumbs -
<ol class = "breadcrumb"> <li><a href = "#">Home</a></li> <li><a href = "#">2021</a></li> <li class = "active">October</li> </ol>
Output
When the above example is executed, it will produce the following result -
READ: Bootstrap | Navbar
Alright guys! This is where we are going to be rounding up for this tutorial. In our next tutorial guide, we are going to be studying about the Bootstrap Pagination.
Feel free to ask your questions where necessary and we will attend to them as soon as possible. If this tutorial was helpful to you, you can use the share button to share this tutorial.
Follow us on our various social media platforms to stay updated with our latest tutorials. You can also subscribe to our newsletter in order to get our tutorials delivered directly to your emails.
Thanks for reading and bye for now.
Feel free to ask your questions where necessary and we will attend to them as soon as possible. If this tutorial was helpful to you, you can use the share button to share this tutorial.
Follow us on our various social media platforms to stay updated with our latest tutorials. You can also subscribe to our newsletter in order to get our tutorials delivered directly to your emails.
Thanks for reading and bye for now.