Sorry if my question seems strange, I had a lot of struggles to find a good way to ask this.
I’m currently trying to put in HTML the image you have under, but I don’t know if it’s possible to set a column (or several divs) so that’s they’re aligned, but then when i’m switching to a mobile device, the column (or the several divs) appears at the end instead of between the divs from the left. I did some tries, but nothing good showed up, plus I’m not really used to Twitter’s Bootstrap
Thank you in advance
3
Answers
http://codepen.io/anon/pen/WwewBR
A super dirty way to do it using Flexbox and its
order
property.You can try putting the divs on left inside a container
This is my approach using Twitter’s Bootstrap. The browser reads the page from top to bottom. So using the arrangement after resizing the browser its possible to get the column on the right to come in between the first two columns and the last two. Hope this will be of help.