使用 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>
      <h2>Nested Columns</h2>
      <div class = "row">
         <div class = "col-sm-9" style = "background-color:orange;">
            Column1
            <div class="row">
               <div class = "col-sm-6" style="background-color:orange; color:white;">nested column</div>
               <div class = "col-sm-6" style="background-color:orange; color:white;">nested column</div>
            </div>
         </div>
         <div class = "col-sm-3" style="background-color:red;">Column2</div>
      </div>
   </body>
</html>

更新於:2020 年 6 月 12 日

631 次瀏覽

開啟你的 職業生涯

完成課程,獲得認證

開始
廣告
© . All rights reserved.