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>
广告