Center Align on a Absolutely Positioned Div - Stack Overflow most recent 30 from stackoverflow.com 2009-12-05T14:33:08Z http://stackoverflow.com/feeds/question/252856 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/252856/center-align-on-a-absolutely-positioned-div 2 Center Align on a Absolutely Positioned Div Steve 2008-10-31T08:10:34Z 2009-01-15T15:14:56Z <pre><code>div#thing { position: absolute; top: 0px; z-index: 2; margin: 0 auto; } &lt;div id="thing"&gt; &lt;p&gt;text text text with no fixed size, variable font&lt;/p&gt; &lt;/div&gt; </code></pre> <p>The div is at the top, but I can't center it with <code>&lt;center&gt;</code> or <code>margin: 0 auto</code>;</p> http://stackoverflow.com/questions/252856/center-align-on-a-absolutely-positioned-div/252872#252872 5 Answer by JacobE for Center Align on a Absolutely Positioned Div JacobE 2008-10-31T08:27:05Z 2008-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#252880 2 Answer by Christian Lescuyer for Center Align on a Absolutely Positioned Div Christian Lescuyer 2008-10-31T08:31:11Z 2008-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#252883 0 Answer by Steve for Center Align on a Absolutely Positioned Div Steve 2008-10-31T08:35:03Z 2008-10-31T08:35:03Z <p>@JacobE Can I center the <code>&lt;p&gt;</code> inside the <code>&lt;div&gt;</code>?</p> http://stackoverflow.com/questions/252856/center-align-on-a-absolutely-positioned-div/447113#447113 0 Answer by violinista for Center Align on a Absolutely Positioned Div violinista 2009-01-15T15:14:56Z 2009-01-15T15:14:56Z <p>Yes:</p> <pre><code>div#thing { text-align:center; } </code></pre>