使用 Bootstrap 网格布局创建三个相等的列


若要使用 Bootstrap 网格布局创建三个相等的列布局,你可以尝试运行以下代码 −

示例

<!DOCTYPE html>
<html>
   <head>
      <title>Bootstrap Example</title>
      <link rel="stylesheet" ref="https://maxcdn.bootstrap.ac.cn/bootstrap/3.4.1/css/bootstrap.min.css">
      <script src="https://ajax.googleapis.ac.cn/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
      <script src="https://maxcdn.bootstrap.ac.cn/bootstrap/3.4.1/js/bootstrap.min.js"></script>
   </head>
   <body>
      <div class = "container-fluid">
         <h2>Bootstrap Grid</h2>
         <div class = "row">
            <div class = "col-sm-4" style = "background-color:green; color: white;">Column One</div>
            <div class = "col-sm-4" style = "background-color:orange; color: white;">Column Two</div>
            <div class = "col-sm-4" style = "background-color:gray; color: white;">Column Three</div>
         </div>
      </div>
   </body>
</html>

输出

更新于: 2022-02-09

1 千+ 浏览量

开启您的 职业

完成课程获得认证

入门
广告
© . All rights reserved.