Is there a alternative way to write to have content in the middle and blank on both sides?
For example:
<div class="col-md-3"></div>
<div class="col-md-6">
<div class="form-group">
....
</div>
</div>
<div class="col-md-3"></div>
Is there a alternative way to write to have content in the middle and blank on both sides?
For example:
<div class="col-md-3"></div>
<div class="col-md-6">
<div class="form-group">
....
</div>
</div>
<div class="col-md-3"></div>
You might take a look at bootstrap offset property
Your code might look something like this:
<div class="col-md-6 col-md-offset-3">
<div class="form-group">
....
</div>
</div>