使用 Bootstrap 堆疊多個進度條


如需在 Bootstrap 中堆疊多個進度條,你可以嘗試執行以下程式碼

示例

即時演示

<!DOCTYPE html>
<html>
   <head>
      <title>Bootstrap Example</title>
      <link href = "/bootstrap/css/bootstrap.min.css" rel = "stylesheet">
      <script src = "/scripts/jquery.min.js"></script>
      <script src = "/bootstrap/js/bootstrap.min.js"></script>
   </head>
   <body>
      <div class = "progress">
         <div class = "progress-bar progress-bar-success" role = "progressbar"
            aria-valuenow = "60" aria-valuemin = "0" aria-valuemax = "100" style = "width: 40%;">
            <span class = "sr-only">40% Complete (success)</span>
         </div>
         <div class = "progress-bar progress-bar-warning" role = "progressbar"
            aria-valuenow = "60" aria-valuemin = "0" aria-valuemax = "100" style = "width: 30%;">
            <span class = "sr-only">30% Complete (warning)</span>
         </div>
         <div class = "progress-bar progress-bar-danger" role = "progressbar"
            aria-valuenow = "60" aria-valuemin = "0" aria-valuemax = "100" style = "width: 20%;">
            <span class = "sr-only">20%Complete (danger)</span>
         </div>
      </div>
   </body>
</html>

更新於:2020 年 6 月 12 日

395 次瀏覽

開啟職業生涯 之旅

完成該課程並獲得認證

開始吧
廣告
© . All rights reserved.