How to use bootstrap push pull?

0

I have a template with the structure illustrated by the image below

Finding in the documentation I saw that combining the col-*-push-* and col-*-pull-* classes can produce this effect

I tried and researched a lot without success. I need some help.

    
asked by anonymous 28.06.2017 / 01:05

1 answer

0

You can try:

<div class="row">
  <div class="col-md-3 pull-md-9">Teste</div>
  <div class="col-md-9 push-md-3">Exemplo</div>
</div>
    
28.06.2017 / 01:18