Bootstrap 徽章
徽章类似于标签;主要区别在于圆角更圆滑。
要使用徽章,只需将 <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>
广告