CSS positioning div above another div when not in that order in the HTML - Stack Overflow most recent 30 from stackoverflow.com2009-12-22T18:12:01Zhttp://stackoverflow.com/feeds/question/220273http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/220273/css-positioning-div-above-another-div-when-not-in-that-order-in-the-html11CSS positioning div above another div when not in that order in the HTMLdevmode2008-10-20T23:16:40Z2009-02-14T22:45:44Z
<p>Given a template where the HTML cannot be modified because of other requirements, how is it possible to display a div above another div when they are not in that order in the HTML and both divs contain data that could produce a varying height and width.</p>
<p>HTML:</p>
<blockquote>
<p><code><div id="wrapper"</code>><br />
<code><div id="firstDiv"</code>><br />
Content to be below in this situation<br />
<code></div</code>><br />
<code><div id="secondDiv"</code>><br />
Content to be above in this situation<br />
<code></div</code>><br />
<code></div</code>><br />
Other elements</p>
</blockquote>
<p>Hopefully it is obvious that the desired result is:</p>
<blockquote>
<p>Content to be above in this
situation<br /> Content to be below in
this situation<br />
Other elements</p>
</blockquote>
<p>When the dimensions are fixed it easy to position them where needed, but I need some ideas for when the content is variable. For the sake of this scenario, please just consider the width to be 100% on both.</p>
<p>Edit: A CSS solution is the most ideal solution. Thank you for the Javascript options mentioned. Without getting too wordy about what or why (or who) ... I am specifically looking for a CSS only solution (and it will probably have to be met with other solutions if that doesn't pan out). </p>
<p>One more ... there are other elements following this. A good suggestion was mentioned given the limited scenario I demonstrated -- given that it might be the best answer, but I am looking to also make sure elements following this aren't impacted.</p>
http://stackoverflow.com/questions/220273/css-positioning-div-above-another-div-when-not-in-that-order-in-the-html/220305#2203050Answer by Muxa for CSS positioning div above another div when not in that order in the HTMLMuxa2008-10-20T23:32:37Z2008-10-20T23:32:37Z<p>I don't think that's possible (at least with CSS2)
However you should be able to achieve the desired results using JavaScript</p>
http://stackoverflow.com/questions/220273/css-positioning-div-above-another-div-when-not-in-that-order-in-the-html/220321#2203210Answer by Bobby Jack for CSS positioning div above another div when not in that order in the HTMLBobby Jack2008-10-20T23:38:49Z2008-10-20T23:38:49Z<p>Well, with a bit of absolute positioning and some dodgy margin setting, I can get close, but it's not perfect or pretty:</p>
<pre><code>#wrapper { position: relative; margin-top: 4em; }
#firstDiv { position: absolute; top: 0; width: 100%; }
#secondDiv { position: absolute; bottom: 0; width: 100%; }
</code></pre>
<p>The "margin-top: 4em" is the particularly nasty bit: this margin needs to be adjusted according to the amount of content in the firstDiv. Depending on your exact requirements, this might be possible, but I'm hoping anyway that someone might be able to build on this for a solid solution.</p>
<p>Eric's comment about javascript should probably be pursued.</p>
http://stackoverflow.com/questions/220273/css-positioning-div-above-another-div-when-not-in-that-order-in-the-html/220326#2203261Answer by Kris for CSS positioning div above another div when not in that order in the HTMLKris2008-10-20T23:40:37Z2008-10-20T23:40:37Z<p>If you know, or can enforce the size for the to-be-upper element, you could use </p>
<pre><code>position : absolute;
</code></pre>
<p>In your css and give the divs their position.</p>
<p>otherwise javascript seems the only way to go:</p>
<pre><code>fd = document.getElementById( 'firstDiv' );
sd = document.getElementById( 'secondDiv' );
fd.parentNode.removeChild( fd );
sd.parentNode.insertAfter( fd, sd );
</code></pre>
<p>or something similar.</p>
<p>edit: I just found this which might be useful: <a href="http://www.w3.org/TR/2003/WD-css3-content-20030514/#move-to" rel="nofollow">w3 document css3 move-to</a></p>
http://stackoverflow.com/questions/220273/css-positioning-div-above-another-div-when-not-in-that-order-in-the-html/220335#2203356Answer by nickf for CSS positioning div above another div when not in that order in the HTMLnickf2008-10-20T23:45:35Z2008-10-20T23:45:35Z<p>As others have said, this isn't something you'd want to be doing in CSS. You can fudge it with absolute positioning and strange margins, but it's just not a robust solution. The best option in your case would be to turn to javascript. In jQuery, this is a very simple task:</p>
<pre><code>$('#secondDiv').insertBefore('#firstDiv');
</code></pre>
<p>or more generically:</p>
<pre><code>$('.swapMe').each(function(i, el) {
$(el).insertBefore($(el).prev());
});
</code></pre>
http://stackoverflow.com/questions/220273/css-positioning-div-above-another-div-when-not-in-that-order-in-the-html/220336#2203363Answer by buti-oxa for CSS positioning div above another div when not in that order in the HTMLbuti-oxa2008-10-20T23:46:14Z2008-10-20T23:46:14Z<p>Here's a solution:</p>
<pre><code><style>
#firstDiv {
position:absolute; top:100%;
}
#wrapper {
position:relative;
}
</code></pre>
<p>But I suspect you have some content that follows the wrapper div...</p>
http://stackoverflow.com/questions/220273/css-positioning-div-above-another-div-when-not-in-that-order-in-the-html/224224#2242241Answer by Carl Camera for CSS positioning div above another div when not in that order in the HTMLCarl Camera2008-10-22T02:05:09Z2008-10-22T02:05:09Z<p>Negative top margins can achieve this effect, but they would need to be customized for each page. For instance, this markup...</p>
<pre><code><div class="product">
<h2>Greatest Product Ever</h2>
<p class="desc">This paragraph appears in the source code directly after the heading and will appear in the search results.</p>
<p class="sidenote">Note: This information appears in HTML after the product description appearing below.</p>
</div>
</code></pre>
<p>...and this CSS...</p>
<pre><code>.product { width: 400px; }
.desc { margin-top: 5em; }
.sidenote { margin-top: -7em; }
</code></pre>
<p>...would allow you to pull the second paragraph above the first.</p>
<p>Of course, you'll have to manually tweak your CSS for different description lengths so that the intro paragraph jumps up the appropriate amount, but if you have limited control over the other parts and full control over markup and CSS then this might be an option.</p>
http://stackoverflow.com/questions/220273/css-positioning-div-above-another-div-when-not-in-that-order-in-the-html/549725#5497250Answer by paul for CSS positioning div above another div when not in that order in the HTMLpaul2009-02-14T20:21:03Z2009-02-14T20:21:03Z<p>hey how can I make one div on top of another example
one will look like being on the background and the second one will be covering part of the first one</p>
http://stackoverflow.com/questions/220273/css-positioning-div-above-another-div-when-not-in-that-order-in-the-html/549760#5497600Answer by qpingu for CSS positioning div above another div when not in that order in the HTMLqpingu2009-02-14T20:38:34Z2009-02-14T22:30:15Z<p>CSS really shouldn't be used to restructure the HTML backend. However, it is possible if you know the height of both elements involved and are feeling hackish. Also, text selection will be messed up when going between the divs, but that's because the HTML and CSS order are opposite.</p>
<pre><code>#firstDiv { position: relative; top: YYYpx; height: XXXpx; }
#secondDiv { position: relative; top: -XXXpx; height: YYYpx; }
</code></pre>
<p>Where XXX and YYY are the heights of firstDiv and secondDiv respectively. This will work with trailing elements, unlike the top answer.</p>
http://stackoverflow.com/questions/220273/css-positioning-div-above-another-div-when-not-in-that-order-in-the-html/549921#5499212Answer by bigmattyh for CSS positioning div above another div when not in that order in the HTMLbigmattyh2009-02-14T22:45:44Z2009-02-14T22:45:44Z<p>There is absolutely no way to achieve what you want through CSS alone -- <strong>unless</strong>:</p>
<ol>
<li>You know the exact rendered height of each element (if so, you can absolutely position the content). If you're dealing with dynamically generated content, you're out of luck.</li>
<li>You know the exact number of these elements there will be. Again, if you need to do this for several chunks of content that are generated dynamically, you're out of luck.</li>
</ol>
<p>If the above are true then you can do what you want by absolutely positioning the elements --</p>
<pre><code>#wrapper { position: relative; }
#firstDiv { position: absolute; height: 100px; top: 110px; }
#secondDiv { position: absolute; height: 100px; top: 0; }
</code></pre>
<p>Again, if you don't know the height want for at least #firstDiv, there's no way you can do what you want via CSS alone. If any of this content is dynamic, you will have to use javascript.</p>