Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Short Story

Let's say my HTML is already set in stone:

<div id="blockA">Block A</div>
<div id="blockB">Block B</div>
<div id="blockC">Block C</div>

It will look like this:

------------
| Block A  |
------------
| Block B  |
------------
| Block C  |
------------

Now I want to switch the order of the blocks. How can I do that with only CSS?

------------
| Block C  |
------------
| Block A  |
------------
| Block B  |
------------

I'm aware there's hacky solutions such as using position:absolute, but this doesn't preserve the effective use of the display:block property. That is, blocks push other blocks downward when they grow in size.

Long Story

When user uses a computer to view my webpage, the blocks are displayed in this order:

  1. General info.
  2. Event schedule.
  3. iPhone app advertisement

The iPhone app advertisement is placed last because it's not terribly important to computer users. A small percentage of computer users will whip out their phone and install the app.

If a mobile user comes to this site, the iPhone app advertisement should be the most important thing on the page. Therefore, it should be moved to the top:

  1. iPhone app advertisement
  2. General info.
  3. Event schedule.

I would like iPhone and computer users to share the same HTML, but have a CSS media query switch the order of the blocks.

@media only screen and (max-device-width: 480px) {
   #blockC {
      /* magic order switching */
   }
}
share|improve this question
Why would you need to do this with only CSS, if you mind me asking? – Blender Sep 15 '11 at 3:53
1  
position: absolute doesn't change display: block. – alex Sep 15 '11 at 3:53
Is there a reason you want to do this in CSS and not JavaScript? Are you worried about users with JavaScript turned off? – Ray Toal Sep 15 '11 at 3:54
position:absolute doesn't preserve the stacking and pushing nature of display:block, which is the whole point of having a block element. – JoJo Sep 15 '11 at 4:30
It's not possible through efficient CSS, though some jQuery could do the magic, I could show you if you want. – Starx Sep 15 '11 at 4:48
show 1 more comment

6 Answers

up vote 5 down vote accepted

As has already been suggested, Flexbox is the answer - particularly because you only need to support a single modern browser: Mobile Safari.

See: http://jsfiddle.net/thirtydot/hLUHL/

You can remove the -moz- prefixed properties if you like, I just left them in for future readers.

CSS:

#blockContainer {
    display: -webkit-box;
    display: -moz-box;
    display: box;

    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    box-orient: vertical;
}
#blockA {
    -webkit-box-ordinal-group: 2;
    -moz-box-ordinal-group: 2;
    box-ordinal-group: 2;
}
#blockB {
    -webkit-box-ordinal-group: 3;
    -moz-box-ordinal-group: 3;
    box-ordinal-group: 3;
}

HTML:

<div id="blockContainer">
    <div id="blockA">Block A</div>
    <div id="blockB">Block B</div>
    <div id="blockC">Block C</div>
</div>
share|improve this answer
1  
Let's just hope Windows 7 phone with its freaking IE never becomes mainstream so we can continue using cool CSS like this. – JoJo Sep 17 '11 at 6:27
Brilliant but could be very slow on complex pages – Christopher Tokar Feb 11 at 15:44
@thirtydot wonderful..! I never know this.. thanks a lot – pixelngrain May 4 at 17:42

You could mess with the margins: http://jsfiddle.net/zV2p4/

But you would probably be better off using position: absolute. This does not change display: block, but it will make the width auto. To fix this, make the divs width: 100%

share|improve this answer
What if I wanted to preserve the block property? That is, if the top block all of a sudden has more text added, the bottom blocks would be pushed downward. With your hardcoding of margins, the blocks would collide. – JoJo Sep 15 '11 at 4:43
You should probably use JavaScript then. There may be a CSS3 property that will accomplish this. But, CSS3 is not supported by all browsers. – William Sep 15 '11 at 4:50

You could try something new as the CSS3 Flexbox. Combining this with media queries should help you achieve your goal.

share|improve this answer
<div id="container">
    <div id="a">Block A</div>
    <div id="b">Block B</div>
    <div id="c">Block C</div>
</div>

lets say the height of a block is 100px

#container     {position:relative; height: 300px;}
#a, #b, #c     {position:absolute; height: 100px}
#c             {top: 0px;}
#b             {top: 100px;}
#a             {top: 200px;}
share|improve this answer
I don't want to hardcode the heights. The elements inside are dynamic, so the height is not known. – JoJo Sep 15 '11 at 4:27

Possible in CSS3: http://www.w3.org/TR/css3-writing-modes/#writing-mode

Why not change the orders of the tags? Your HTML page isn't made out of stone, are they?

share|improve this answer
Layout flow is deprecated... Use writing mode instead – William Sep 15 '11 at 4:06
@Will - Thanks, I was looking at the wrong resource. – dpp Sep 15 '11 at 4:10

HTML:

<div id="blockC second-order">Block C</div>
<div id="blockA">Block A</div>
<div id="blockB">Block B</div>
<div id="blockC first-order">Block C</div>

CSS

.second-order {
     display: none;
}

@media only screen and (max-device-width: 480px) {
     .first-order: {
         display: none;
     }

     .second-order: {
         display: block;
     }
}

I think this is non-stupid solution becouse repeating content is no problem in the most of cases and in your case if it is advertisment you would repeat not a lot of content.

I've answers on this question althought one year passed, becouse I was searching for solution, I read this and got this idea.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.