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 Padding-left 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; } .bs-example div{ font-size: 18px; background: #dbdfe5; margin-bottom: 15px; } .bs-example div:nth-child(2n){ background: #abb1b8; } </style> </head> <body> <div class="bs-example"> <div class="ps-0">.ps-0</div> <div class="ps-1">.ps-1</div> <div class="ps-2">.ps-2</div> <div class="ps-3">.ps-3</div> <div class="ps-4">.ps-4</div> <div class="ps-5">.ps-5</div> </div> </body>