vote up 2 vote down star
2
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;

flag

72% accept rate

4 Answers

vote up 5 vote down check

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%;
}
link|flag
vote up 2 vote down

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

link|flag
vote up 0 vote down

@JacobE Can I center the <p> inside the <div>?

link|flag
div#thing p { text-align:center; } – JacobE Oct 31 '08 at 8:49
vote up 0 vote down

Yes:

div#thing { text-align:center; }
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.