Hi, I have I need to be able to move the green box into the red box, the issue arise when i cant use flex-column because i need to change the orders in mobile
such that content order on mobile becomes: content 2, then content 1, then content 3. Also I’m using align-self: start; on the col-xl-6 but tried removing that line and setting max-height without success.
In general when using flex boxes that automatically wrap at an unknown width you can only reverse the order using wrap-reverse. If you want to have a completely custom order on mobile you have to use media queries. In your case that should be easy since the items have a fixed width of 670px, so you know the screen width at which they wrap. Then you can add a media query that sets the order property for one or more children to change their order, like for example
That part I have figured it out I can easily set bootstrap order classes with responsive breakpoint, but because of this I cant use flex-column hence the dilemma