在 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>

更新于:12-6 月-2020

631 浏览量

开启你的 职业生涯

完成课程后获得认证

开始
广告