Bootstrap 5 Badges Pill Badges Last Updated : 19 Dec, 2022 Comments Improve Suggest changes 1 Likes Like Report Bootstrap 5 Badges Pill badges can be made by using the rounded-pill class on the badge component. This is used to give the badges a rounded corner shape. Bootstrap 5 Badges Pill badge Class: rounded-pill: This class is used with the badge class to make badges pill-shaped. Syntax: <span class="rounded-pill badge"> ... </span> Example 1: In this example, we used the rounded-pill class to make the badges pill-shaped. We also used the background color utilities to change the background color of pill badges. HTML <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <!-- Bootstrap CSS --> <link rel="stylesheet" href= "https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" /> <script src= "https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js"> </script> </head> <body> <div class="container"> <div class="mt-5"> <h1 class="text-success"> GeeksforGeeks </h1> <strong>Bootstrap 5 Badges Pill badges</strong> </div> <span class="rounded-pill badge bg-primary mt-4"> Pill Badge - Primary </span> <br> <span class="rounded-pill badge bg-warning text-dark mt-3"> Pill Badge - Warning </span> <br> <span class="rounded-pill badge bg-danger mt-3"> Pill Badge - Danger </span> <br> <span class="rounded-pill badge bg-secondary mt-3"> Pill Badge - Secondary </span> <br> <span class="rounded-pill badge bg-success mt-3"> Pill Badge - Success </span> <br> <span class="rounded-pill badge bg-light text-dark mt-3"> Pill Badge - Light </span> <br> <span class="rounded-pill badge bg-info text-dark mt-3"> Pill Badge - Info </span> </div> </body> </html> Output: Example 2: In this example, we used pill badges with button components with different background colors. HTML <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <!-- Bootstrap CSS --> <link rel="stylesheet" href= "https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" /> <script src= "https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js"> </script> </head> <body> <div class="container"> <div class="mt-5"> <h1 class="text-success">GeeksforGeeks</h1> <strong>Bootstrap 5 Badges Pill badges</strong> </div> <br> <button type="button" class="btn btn-primary mt-4"> Button 1 <span class="rounded-pill badge bg-danger"> Danger Colored Pill Badge </span> </button> <br> <button type="button" class="btn btn-primary mt-4"> Button 2 <span class="rounded-pill badge bg-warning"> Warning Colored Pill Badge </span> </button> <br> <button type="button" class="btn btn-primary mt-4"> Button 3 <span class="rounded-pill badge bg-secondary"> Secondary Colored Pill Badge </span> </button> <br> <button type="button" class="btn btn-primary mt-4"> Button 4 <span class="rounded-pill badge bg-success"> Success Colored Pill Badge </span> </button> </div> </body> </html> Output: Reference: https://getbootstrap.com/docs/5.0/components/badge/#pill-badges Create Quiz Comment B badalmishra28 Follow 1 Improve B badalmishra28 Follow 1 Improve Article Tags : Technical Scripter Web Technologies Bootstrap Technical Scripter 2022 Bootstrap-5 +1 More Explore Bootstrap 5 Tutorial 6 min read Bootstrap 5 Introduction 4 min read LayoutBootstrap 5 Layout Breakpoints 3 min read Bootstrap 5 Layout Containers 3 min read BootStrap 5 Layout Grid System 3 min read Bootstrap 5 Columns 2 min read Bootstrap 5 Gutters 2 min read Bootstrap 5 Utilities 2 min read Bootstrap 5 Z-index 2 min read ContentBootstrap Reboot 2 min read Bootstrap 5 Typography 2 min read Bootstrap 5 Images 1 min read Bootstrap 5 Tables 2 min read Bootstrap 5 Figures 2 min read FormsBootstrap-5 Forms 2 min read Bootstrap 5 Form Controls 2 min read Bootstrap 5 Select 2 min read Bootstrap 5 Checks and Radios 2 min read Bootstrap 5 Range 2 min read Bootstrap 5 Input Group 3 min read Bootstrap 5 Floating labels 2 min read Forms LayoutBootstrap 5 Layout Forms 2 min read Bootstrap5 Layout Utilities 2 min read Bootstrap 5 Layout Form Grid 2 min read Bootstrap 5 Layout Gutters 2 min read Bootstrap 5 Layout Horizontal form 2 min read Bootstrap 5 Layout Horizontal form label sizing 2 min read Bootstrap 5 Layout Column sizing 2 min read Bootstrap 5 Layout Auto-sizing 2 min read Bootstrap 5 Layout Inline forms 2 min read Bootstrap 5 Validation 4 min read ComponentsBootstrap 5 Accordion 3 min read Bootstrap 5 Alerts 2 min read Bootstrap 5 Badges 2 min read Bootstrap Breadcrumb 2 min read Bootstrap 5 Buttons 3 min read Bootstrap 5 | Button group 4 min read Bootstrap 5 | Card 11 min read Bootstrap 5 Carousel 3 min read Bootstrap 5 | Close button 1 min read Bootstrap 5 Collapse 3 min read Bootstrap 5 Dropdowns 9 min read Bootstrap 5 List group 5 min read Bootstrap 5 Modal 7 min read NavbarBootstrap 5 Navbar Brand 3 min read Bootstrap 5 Navbar Brand Text 2 min read Bootstrap Navbar Brand Image 2 min read Bootstrap 5 Navbar Nav 2 min read Bootstrap 5 Navbar Forms 2 min read Bootstrap 5 Navbar Text 2 min read Bootstrap 5 Offcanvas 12 min read Bootstrap 5 Popovers 2 min read Bootstrap 5 Progress 5 min read Bootstrap 5 Scrollspy 4 min read Bootstrap 5 Spinners 3 min read Bootstrap 5 Toasts 3 min read Bootstrap 5 Tooltips 3 min read HelpersBootstrap 5 Clearfix 2 min read Bootstrap 5 Colored links 2 min read Bootstrap 5 Ratios 2 min read Bootstrap 5 Position 2 min read Bootstrap 5 Visually hidden 2 min read Bootstrap 5 Stretched link 2 min read Bootstrap 5 Text Truncation 2 min read ExtendBootstrap 5 Approach 3 min read Bootstrap 5 Icons 2 min read Like