Bootstarp 徽章
徽章与标签类似;主要区别是徽章的圆角更多。
要使用徽章,只需将 <span class = "badge"> 添加到链接、Bootstrap 导航栏等处。
您可以尝试运行以下代码,在 Bootstrap 中实现徽章
示例
<!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> <a href = "#">Mailbox <span class = "badge">50</span></a> </body> </html>
广告