I tried using the row class, but it did not solve the problem. I'm just trying to take two divs and put them next to each other using only bootstrap, not css. (This is the corner case when I cannot add any css) Is there a way to do this?
I basically have this:
<div class="OuterMostClass row"> <div class="outerClass"> <button class="btn">button1</button> </div> <div class="outerClass2"> <button class="btn">button2</button> </div> </div>
And I want the two buttons to be next to each other, and due to limitations I cannot add any CSS except bootstrap. Is it possible?
source share