I am working on a responsive design, and I would like to reorder some divs at specific breakpoints. I'm not sure if this is possible, but here it is.
Here is a crude fiddle showing the current layout: http://jsfiddle.net/Ubjmc/ above a specific breakpoint. As you can see that the order (divs) is - one, twothen three.
And that's how I want him watching my breakpoint: http://jsfiddle.net/AfT4D/ Order divs for that - one, threeand then two.
I'm not sure if this is possible with direct css. What I have done so far is to make the fourth element, which hides above the breakpoint and shows after the breakpoint, and then hides the element that it replaces at this breakpoint (I hope this makes sense).
Is this method the only reliable way just for CSS to do what I would like (which is not extremely difficult)?
Change . I already have my control set installed and I use media queries. The second scenario in my example is how I want the first to look in the order of the first (or I want to find out if this is possible).
<div class="wrap">
<div class="one"></div>
<div class="two"></div>
<div class="three"></div>
</div>
, , , : http://jsfiddle.net/AfT4D/, divs?