Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Given that the HTML

<div>
   <div id="content1"> content 1</div>
   <div id="content2"> content 2</div>
   <div id="content3"> content 3</div>
</div>

render as

content 1
content 2
content 3

My question:

Is there a way to render it as below by using CSS only without changing the HTML part.

content 1
content 3
content 2
share|improve this question
2  
Your question is very good because this is useful for SEO optimizations in order to bring the nav-divs below the content. You should expain why do you want this in your question body - so people will understand its use. – sorin Jan 24 '10 at 8:51

7 Answers

up vote 3 down vote accepted

It might not exactly match what you're after, but take a look at this question:
CSS positioning div above another div when not in that order in the HTML

Basically, you'd have to use Javascript for it to be reliable in any way.

share|improve this answer
I am in a situation of CSS only, anyway, what you said makes sense. – codemeit Mar 9 '09 at 9:57

This is one of the classic use-cases for absolute positioning--to change rendering from source order. You need to know the dimensions of the divs to be able to do this reliably however, and if you don't javascript is your only recourse.

share|improve this answer

I got it to work by doing this:

#content2 { position:relative;top:15px; }
#content3 { position:relative; top:-17px; }

but keep in mind that this will not work for you as soon as you have dynamic content. The reason I posted this example is that without knowing more specific things about your content I cannot give a better answer. However this approach ought to point you in the right direction as to using relative positioning.

share|improve this answer

I was messing around in Firefox 3 with Firebug, and came up with the following:

<div>
  <div id="content_1" style="height: 40px; width: 40px; background-color: rgb(255, 0, 0); margin-bottom: 40px;">1</div>
  <div id="content_2" style="width: 40px; height: 40px; background-color: rgb(0, 255, 0); float: left;">2</div>
  <div id="content_3" style="width: 40px; height: 40px; background-color: rgb(0, 0, 255); margin-top: -40px;">3</div>
</div>

It's not perfect, since you need to know the heights of each container, and apply that height value to the negative top margin of the last element, and the bottom margin of the first element.

Hope it helps, nd

share|improve this answer

This can be done in browsers that support the CSS3 flexbox concept, particularly the property flexbox-order.

See here

However, support for this is pretty rare still.

share|improve this answer

One word answer: nope. Look into XSLT (XML Stylesheet Language Transforms), which is a language specifically geared towards manipulating XML.

share|improve this answer
XSLT would be massively over-the-top for this simple DOM manipulation task... – nickf Mar 8 '09 at 23:20
True, but it would also be the best solution. All others require client-side scripting, which won't work in all cases. – Samir Talwar Mar 9 '09 at 19:37
I don't quite understand the negative score of this comment. Yes, the question was about CSS, but Samir's answer provides the only reliable way to achieve the intended effect on every browser, even with Javascript disabled. – jcayzac Aug 4 '10 at 1:53

If you know the height of each element then it is a simple case of vertical relative positioning to swap around the orders. If you don't know the heights then you either have to give them heights and allow the divs to get scroll bars if there is any overflow or calculate it all with JavaScript and add the relative positioning on-the-fly.

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.