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

Let's say I have this HTML page:

<body>
<p id="alice">Alice</p>
<p id="bob">Bob</p>
</body>

and this pretend CSS syntax:

p#alice:before { p#bob }

In other words, I want to override the HTML using CSS, placing the Bob element ABOVE the Alice element. Why? Because in my case I can edit the CSS, and I cannot edit the HTML.

Bob doesn't have to actually occur before Alice in the DOM, but it does need to appear ABOVE Alice visually.

share|improve this question
If you know the height of #bob you could just position #alice absolutely,with a top distance of #bob's height. – feeela Jan 24 at 22:40
1  
You have ways in CSS to show Bob above Alice without changing the HTML flow, what's the current CSS? – darma Jan 24 at 22:40
You could fix this with absolute or relative positioning...but if you can edit/add JavaScript then that would be a much better solution. – JCOC611 Jan 24 at 22:40
No, I can only edit CSS in this case. And I'm not going to use absolute positioning under any circumstances -- it has to be relative. – themirror Jan 24 at 22:42

3 Answers

Thats easy but ugly and you shouldnt do it.

However here is how to do it:

http://jsbin.com/azevet/2/edit

<div class="first-in-dom">
  Im first in DOM
  </div>
<div class="second-in-dom">
  Im second in DOM
  </div>


div {
  height:100px;
  border:solid;
}
.first-in-dom, .second-in-dom {
  position:relative;
}
.first-in-dom {
  margin-bottom:-100px;
    top:110px;

}
share|improve this answer
+1 Vote This would probably be your best option if you cannot use jQuery. – tech0925 Jan 24 at 22:55

You can always do this with jQuery if you are able to add the code.

$('#bob').insertBefore('#alice'); 
share|improve this answer

The only way to do this with pure CSS that is completely flexible is with flexbox.

http://jsfiddle.net/S9L3r/ (prefixes not included)

body {
    display: flex;
    flex-flow: column nowrap;
}

#alice {
    order: 2;
}

http://caniuse.com/#feat=flexbox

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.