切换布局
显示结果
<!DOCTYPE html> <html lang="zh"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>Bootstrap4 带有百分比的进度条 - 迹忆客(jiyik.com)</title> <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.6.0/dist/css/bootstrap.min.css"> <script src="https://code.jquery.com/jquery-3.5.1.min.js"></script> <script src="https://cdn.jsdelivr.net/npm/bootstrap@4.6.0/dist/js/bootstrap.bundle.min.js"></script> <style> .bs-example{ margin: 20px; } /* Adding space at the bottom of progress bar */ .progress{ margin-bottom: 1rem; } </style> </head> <body> <div class="m-4"> <div class="progress"> <div class="progress-bar" style="width: 25%"> 25% </div> </div> <div class="progress"> <div class="progress-bar" style="width: 60%"> 60% </div> </div> <div class="progress"> <div class="progress-bar" style="width: 75%"> 75% </div> </div> <div class="progress"> <div class="progress-bar" style="width: 100%"> 100% </div> </div> </div> </body> </html>