Utilizing Bootstrap to design a layout that adapts to desktop, tablet, and mobile screens. The desired output is depicted below:
In order to achieve this, three divs were created:
<div class="row">
<div class="col-md-3">Text</div>
<div class="col-md-3">Text</div>
<div class="col-md-3">Text</div>
</div>
The middle div should be hidden on tablet view, then the last div will move under the first on mobile view.
On desktop, all three divs display properly, however, on tablet and mobile they collapse vertically.
Is there a simple way to accomplish this with Bootstrap, or do custom CSS media queries need to be written?