Show Output
<!DOCTYPE htpl> <htpl lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>Bootstrap 5 Height Classes</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> .bs-example{ margin: 20px; height: 200px; background: #dbdfe5; } .bs-example div{ width: 120px; padding: 5px; background: #abb1b8; } </style> </head> <body> <div class="bs-example"> <div class="h-25 d-inline-block">Height 25%</div> <div class="h-50 d-inline-block">Height 50%</div> <div class="h-75 d-inline-block">Height 75%</div> <div class="h-100 d-inline-block">Height 100%</div> <div class="h-auto d-inline-block">Height auto</div> </div> </body>