I have problem in topic "Use the Bootstrap Grid to Put Elements Side By Side"

I have problem in nesting Bootstrap buttons into div class="row" and then in div class="col-xs-4.
Help me.

The following would put two buttons side by side:

<div class="row">
  <div class="col-xs-6">
    <button class="btn btn-block">Button #1</button>
  </div>
  <div class="col-xs-6">
    <button class="btn btn-block">Button #2</button>
  </div>
</div>

You can see a pen with this in it here.

1 Like

Thank You. :slight_smile:

1 Like