My task involves rendering a page with react-bootstrap on desktop, structured like this:
<Row>
<Col xs={12} md={8} className="a">
</Col>
<Col xs={6} md={4} className="b">
</Col>
<Col xs={6} md={4} className="c">
</Col>
</Row>
On the UI, it appears as follows:
| |_b_|
| a |_c_|
| | |
I am attempting to rearrange my layout when the screen size is less than 786 px, such as on mobile or tablet, to achieve the following structure:
|_b_|
| a |
| |
|___|
| c |
I have tried using xsPull
, mdPull
, and flex-direction: column
along with CSS re-ordering, but none of these solutions seem to be working. Is there something I am overlooking?