ShapeYourPath
(current)
Run Code
Live Code Editor- Bootstrap 5 Badge Inside Button
Source Code
<!doctype html> <html lang="en"> <head> <!-- Required meta tags --> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <meta name="description" content=""> <!-- Bootstrap CSS --> <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.1/dist/css/bootstrap.min.css" rel="stylesheet"> <title>Bootstrap 5 Badge With Button</title> </head> <body> <h1 class="mt-2 text-success">Bootstrap 5 Badge With Button </h1> <div class="container mt-5"> <button type="button" class="btn btn-primary"> Notification <span class="badge bg-dark">4</span> </button> <button type="button" class="btn btn-success"> Email <span class="badge bg-info">14</span> </button> <button type="button" class="btn bg-info"> Message <span class="badge bg-success">15</span> </button> </div> <!--/container--> <!-- Option 1: Bootstrap Bundle with Popper --> <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.1/dist/js/bootstrap.bundle.min.js"></script> </body> </html>
Output :
Running