how to get bootstrap resizable grid code example
Example 1: .col-12 bootstrap
.col-12{
flex: 0 0 100%;
max-width: 100%;
}
Example 2: bootstrap content fluid 2 column
<head>
<link rel="stylesheet" type="text/css" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" />
</head>
<body>
<section id="contact">
<div class="container-fluid">
<div class="row">
<div class="col-xs-6"> map </div>
<div class="col-xs-6"> contact form </div>
</div>
</div>
</section>
</body>