Center Align on a Absolutely Positioned Div - Stack Overflow most recent 30 from stackoverflow.com2009-12-05T14:33:08Zhttp://stackoverflow.com/feeds/question/252856http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/252856/center-align-on-a-absolutely-positioned-div2Center Align on a Absolutely Positioned DivSteve2008-10-31T08:10:34Z2009-01-15T15:14:56Z
<pre><code>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>
</code></pre>
<p>The div is at the top, but I can't center it with <code><center></code> or <code>margin: 0 auto</code>;</p>
http://stackoverflow.com/questions/252856/center-align-on-a-absolutely-positioned-div/252872#2528725Answer by JacobE for Center Align on a Absolutely Positioned DivJacobE2008-10-31T08:27:05Z2008-10-31T08:27:05Z<p>Your problem may be solved if you give your div a fixed width, as follows:</p>
<pre><code>div#thing
{
position: absolute;
top: 0px;
z-index: 2;
width:400px;
margin-left:-200px;
left:50%;
}
</code></pre>
http://stackoverflow.com/questions/252856/center-align-on-a-absolutely-positioned-div/252880#2528802Answer by Christian Lescuyer for Center Align on a Absolutely Positioned DivChristian Lescuyer2008-10-31T08:31:11Z2008-10-31T08:31:11Z<p>Dave Shea (mezzoblue) has written a good article on the subject with explanations and examples:
<a href="http://www.mezzoblue.com/tests/centered-css/" rel="nofollow">Horizontally Centered Absolute Positioning</a></p>
http://stackoverflow.com/questions/252856/center-align-on-a-absolutely-positioned-div/252883#2528830Answer by Steve for Center Align on a Absolutely Positioned DivSteve2008-10-31T08:35:03Z2008-10-31T08:35:03Z<p>@JacobE
Can I center the <code><p></code> inside the <code><div></code>?</p>
http://stackoverflow.com/questions/252856/center-align-on-a-absolutely-positioned-div/447113#4471130Answer by violinista for Center Align on a Absolutely Positioned Divviolinista2009-01-15T15:14:56Z2009-01-15T15:14:56Z<p>Yes:</p>
<pre><code>div#thing { text-align:center; }
</code></pre>