Show Output
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>Height Sizing of Bootstrap Progress Bar</title> <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet"> <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/js/bootstrap.bundle.min.js"></script> <style> /* Adding space at the bottom of progress bar */ .progress{ margin-bottom: 1rem; } </style> </head> <body> <div class="m-4"> <!-- Progress bar with 1px height --> <div class="progress" style="height: 1px;"> <div class="progress-bar" style="width: 50%;"></div> </div> <!-- Progress bar with 20px height --> <div class="progress" style="height: 20px;"> <div class="progress-bar" style="width: 50%;"></div> </div> </div> </body> </html>