使用 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 = "container-fluid">
         <h2>Bootstrap Grid Unequal Columns</h2>
         <div class="row">
            <div class = "col-sm-8" style = "background-color:green; color: white;">Column One</div>
            <div class = "col-sm-2" style = "background-color:orange; color: white;">Column Two</div>
            <div class = "col-sm-2" style = "background-color:gray; color: white;">Column Three</div>
         </div>
      </div>
   </body>
</html>

更新時間: 2020-06-12

436 人瀏覽

開啟你的 職業生涯

完成課程取得認證

開始學習
廣告
© . All rights reserved.