ShapeYourPath
(current)
Run Code
Live Code Editor- Bootstrap 5 Button Size
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 Button Size</title> </head> <body> <div class="container mt-4"> <h1>Bootstrap 5 Button Size</h1> <h2>Large Button</h2> <button type="button" class="btn btn-primary btn-lg"> Large Primary button </button> <button type="button" class="btn btn-secondary btn-lg"> Large Secondary button </button> <h2>Small Button</h2> <button type="button" class="btn btn-primary btn-sm">Small Primary button</button> <button type="button" class="btn btn-secondary btn-sm">Small Secondary button</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