Currently, my Bootstrap page structure is as follows:
<div class='container'>
<div class='row'>
<div class='col-sm-6 col-md-4 col-lg-3'>
<p>column1</p>
</div>
<div class='col-sm-6 col-md-4 col-lg-3'>
<p>column2</p>
</div>
<div class='col-sm-6 col-md-6 col-lg-4'>
<p>column3</p>
</div>
<div class='col-sm-2 col-md-2 col-lg-1'>
<button type="button">Button</button>
</div>
</div>
</div>
On a PC screen, it appears as one row with columns and a button in the same line like this:
1 row
--------------------------------
|column1|column2|column3|button|
--------------------------------
Now, I want to restructure it for IPad in horizontal display mode (1024px) like this:
2 rows
--------------------------------
|column1| |button|
--------------------------------
|column2|column3|
--------------------------------
I have attempted using pull-right, text-right, justify-content-end classes but unfortunately, they didn't work as expected.