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

要使用Bootstrap Grid Layout创建两个不相等的列,可以尝试运行以下代码

示例

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