Bootstrap 面包屑

面包屑显示基于层次结构的信息。在博客网站中,面包屑可以显示发布的日期、类别或标签。

Bootstrap中的breadcrumb只是一个带有.breadcrumb类的无序列表,如下所示

示例

<!DOCTYPE html>
<html>
   <head>
      <title>Bootstrap Example</title>
      <link href = "/bootstrap/css/bootstrap.min.css" rel = "stylesheet">
      <script src = "/scripts/jquery.min.js"></script>
      <script src = "/bootstrap/js/bootstrap.min.js"></script>
   </head>
   <body>
      <ol class = "breadcrumb">
      <li><a href = "#">Home</a></li>
      <li><a href = "#">Tutorials</a></li>
      <li class = "active">Java</li>
      </ol>
   </body>
</html>