Bootstrap面包屑类

在网站或博客上,面包屑可以显示发布日期,类别或标签。面包屑显示基于层次的信息。在Bootstrap中,使用.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 = "#">Quiz</a></li>
         <li class = "active">PHP</li>
      </ol>
   </body>
</html>