使用 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>

更新日期:12-6 月-2020

436 次访问

开启你的 职业

完成课程获得认证

开始
广告
© . All rights reserved.