Relative Positioning Leaves Blank or White Space on Webpage - CSS DIV Position
By Jason Seale
If You Want Your DIV Content To Layer Correctly, Relative to Its Coded Position, You Need A Different Approach
So, you create a DIV tag to wrap some content, and you use CSS, applied to the DIV tag, to make the content's position Relative, in the mistaken belief that:
- your content will simply move over to where you want it to be;
- other elements on the web page will fill the space where it would have been if you had not moved it over;
Instead:
- the content moves over;
- AND a big blank space is ALSO left where the content would have been if you had not moved it!
Perhaps you have already tried using Absolute positioning, but found that:
- this only places the content relative to the full browser window, and not relative to your content, creating havoc with the placement of your content when it is displayed in differently sized browser windows.
These are common problems.
The Relative positioning problem is inherent to the standard for displaying content using relative positioning. Believe it or not, despite many people having a very different "intuitive" grasp of how it should work, display of content using relative positioning is SUPPOSED to leave that frustrating block of space behind.
The Absolute positioning problem is a matter of scope ... you need a way to specify that you want your content placed relative to other content, not to the browser window.
Fortunately, there are solutions to these problems!
How to Get Content to Layer Properly Over Top of Other Content Using DIVs, CSS and HTML
I am creating this page because I had the exact same problems.
- If I used Absolute positioning, my content (a logo) would float relative to the top left corner of the browser ... but my main content was centered in the browser, and depending on the size of the browser window, the logo would be too far to the left or right.
- If I used Relative positioning, the logo would float relative to its original position, but it would ALSO leave behind a logo-sized blank space right where it would have been if I had not moved it.
So, how did I get the logo to behave? After a little (ok, a lot) of research into the matter, I finally discovered this solution:
- Give the DIV containing the content you wish to layer (in my case the logo) the property of position: absolute; and give it the desired offsets, such as top: 150px; left: 200px;
- Wrap the above DIV in an additional DIV, and give the outer DIV the property of position: relative;
- Do NOT (unless you need to for some other reason) offset the position of the outer DIV. The idea is that you need to nest an Absolute positioned DIV in this Relative positioned DIV;
- Now the content you wish to layer will have an Absolute position relative to the outer DIV, not relative to your browser window.
CSS Manuals, Tips & Tricks
![]() | Amazon Price: $18.00 List Price: $34.99 |
![]() | Amazon Price: $18.86 List Price: $34.95 |
![]() | Amazon Price: $14.97 List Price: $29.99 |
![]() | Amazon Price: $27.99 |
![]() | Amazon Price: $22.55 List Price: $44.99 |
![]() | Amazon Price: $4.99 |
This Is the HTML in Your Web Page
<div id="logo-wrapper"> <div id="logo"> <img src="logo.gif"> </div> </div>
This Is the CSS for Your DIV Tags
#logo-wrapper {
position: relative;
}
#logo {
position: absolute;
top: 175px;
left: 84px;
}CSS Notes
- Using the # sign in front of a CSS identifier applies the settings to all elements with that name. Thus the settings for the class #logo-wrapper apply to all DIV (and other) elements with the parameter id="logo-wrapper".
Comments - Let Me Know if You Need More Help With This!
Excellent help
Awesome, just what I was looking for!
Much appreciated!
Jason, you are the man!
This is a "show printable view" type application. I have to position dynamic text over two form images where the 2nd form image can be multiple "continuation" pages (the form is just too complicated to replicate using tables in the time I have available). I'm using @media because this has to be viewable and printable with accuracy. Relative positioning was killing me on having an unknown number of continuation pages. Now, I can use absolute positioning again and each physical page is "relative" for screen and "page-break-before:always" for print. This approach will save me so much time by letting me use identical CSS positioning for the continuation pages with the exception of a constant offset for the screen vertical positioning.
Thanks again for sharing your solution and to Google for helping me find it!
Pete: It is for hard working people like you that I made this page. I had my own, similar, trouble ... found a solution (very hard for me to find) and wanted to share the joy and leave a solid record for my future self to refer to.
Jason, thanks so much for sharing this article. It took me a lot of research until I reached your site. Your solution is just fantastically simple and smart. Thank you so much for sharing this, you saved me more hours of unsuccessful research.
Superb! this article helped me right out.
Thanks!
Hmmmm, for some reason it is doing the same thing as it was before, reserving all the white space. If I take everything out of the encasing div, the div appears over the text on the page...
html:
css:
#homebotpicouter {
position: relative;
height: 250px;
width: 250px;
float: right;
}
#homeboy {
background-image: url(images/ist2_6253225-young-explorer.png);
background-repeat: no-repeat;
position: absolute;
left: 80px;
height: 251px;
width: 251px;
}
This was a great help, thank you Jason
Thank you.. Oh, so very much. :)
A very helpful article. I've been spending all day trying to figure this out. Thanks.
this is perfect. thanks for sharing!
finally! I've been trying to figure this one out and you provided the magic answer -- thank you so much!
It's important to say that the parent canot be table and child elements. I had to insert a div tag inside my table to make it work.
Great post! Thanks!
Thanks!
This fixed my divs with z-indexs ranging from 0-2, but for some reason it's not working with 2 divs that have z-indexes of 3. Any ideas?
I stubled across this site with a similar problem however with bookmark links within the page. This solution however does not work for links.
Use a negative margin-bottom on the moved element. done!
nice hub
Thanks so much.... Needed that
Thanks! It is nice to find that we are not the only one having the same problem.
Thx for this! :D
You ROCK! Thank you so much... you saved me hours of time! Sending good karma your way. :) Thanks!
-Sara
Thank you!
Thank You!
this was a great help. :)
Great tip, thanks!
You saved me here. This was frustrating me for so long!
Thanks! It worked!
Jason, U rock man! spent hours on this and finally thanks to Google and to you that i finally managed to get the div tags in place and working... Phew! Awesome, can finally go off to sleep.. :-)
thanks a lot :)
Ok, credit when credit is due. Man have i been searching for this solution. It always stays complicated with the positioning issues and this actually solved my issues as well. Thanks a lot for writing the article Jason
YOU ROCK !!!!!!!!!!!!!!!
This is secret ninja stuff man.
My page is finally done !!
Thanks man... Just what I needed :)
Thanks man... Just what I needed :)
Thank you so much for shareing that!!! puzzle me for so long :)
Thank you very much for sharing that! Just wiped out my frustration with relative positioning. Thanks!
Awesome! This just saved me a TON of time! Bravo!
FYI: I was able to achieve similar results by putting the original DIV in a table structure and making it's position 'absolute'.
I LOVE YOU!!! Thanks for this!!
I read this about a year ago and it really helped a ton, I just never posted then which is why I'm posting now to say thanks a ton. Keep up the good work (and sorry for the late post :p)
BIG HELP this is. Thanks man, saved me some time
You're a life saver man, thanks!
Really Great for sharing this idea.
Thanks for your help. :)
Excellent!!!!! Thank you for sharing your wisdom!
Thanks so much... i recognize the frustration you wrote about very well. But this solved it.
Thanks a lot dude! that's an easy and yet clean solution. Saved me a lot of hours!
Thanks this helps alot, love the internet






itsjareds 2 years ago
Thanks! I will try this when I have time.
-Jared