Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
div#thing
{
 position: absolute;
 top: 0px;
 z-index: 2;
 margin: 0 auto;
}

<div id="thing">
<p>text text text with no fixed size, variable font</p>
</div>

The div is at the top, but I can't center it with <center> or margin: 0 auto;

share|improve this question

4 Answers

up vote 44 down vote accepted

Your problem may be solved if you give your div a fixed width, as follows:

div#thing
{
    position: absolute;
    top: 0px;
    z-index: 2;
    width:400px;
    margin-left:-200px;
    left:50%;
}
share|improve this answer
I don't know why I didn't think of that, even though we use the same technique for vertical centering all the time... Thanks anyway, you saved me a lot of time. – Aayush Aug 31 '10 at 10:19
what if the user has vertically scrolled down the div appears on the top of page while it should appear on the visible area – jaminator Aug 26 '12 at 17:45
I am displaying thumbnails of dynamically reszied images in my overlay div, so I don't know the width. – jaminator Sep 1 '12 at 4:13
1  
this is only a workaround, stackoverflow.com/questions/1776915/… appears to be the solution – jaminator Sep 1 '12 at 5:00

Dave Shea (mezzoblue) has written a good article on the subject with explanations and examples: Horizontally Centered Absolute Positioning

share|improve this answer
div#thing
{
    position: absolute;
    width:400px;
    right: 0;
    left: 0;
    margin: auto;
}
share|improve this answer
3  
How does this work? Can you please provide why your answer is valid? – afuzzyllama Dec 10 '12 at 18:08
no, cause it's not valid – vladkras Apr 22 at 12:31

Yes:

div#thing { text-align:center; }
share|improve this answer
This will align the contents within a div. It will not align the div in the center of the page. It will also not align an absolutely positioned div in any way other than the contents within it that are part of the document flow. – CarterMan Apr 12 at 19:58

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.