使用 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-9" style = "background-color:blue; color: white;">Column One</div>
            <div class = "col-sm-3" style = "background-color:red; color: white;">Column Two</div>
         </div>
      </div>
   </body>
</html>

更新於: 2020 年 6 月 12 日

532 次瀏覽

開啟你的職業生涯

完成課程即可獲得認證

開始
廣告
© . All rights reserved.