I would like to center my bootstrap columns. I could do so with offsets:
<div class="row">
<div class="col-lg-2 col-sm-4 col-xs-6 col-lg-offset-3">Col1</div>
<div class="col-lg-2 col-sm-4 col-xs-6">Col 2</div>
<div class="col-lg-2 col-sm-4 col-xs-6 col-xs-offset-3 col-sm-offset-0 ">Col 3</div>
</div>
However, the number of columns is data-driven, so I can't know the right offset in advance. Is there a pull-center
or something similar?