引导徽章

徽章类似于标签。主要区别是拐角更圆。 

要使用徽章,只需在链接,Bootstrap导航等中添加<span class =“ badge”>。 

您可以尝试运行以下代码以在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>