1

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>
I'll-Be-Back
  • 10,530
  • 37
  • 110
  • 213

1 Answers1

1

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>
VladRoker
  • 40
  • 1
  • 7