How to center DIV in DIV? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-06T10:00:06Z http://stackoverflow.com/feeds/question/114543 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/114543/how-to-center-div-in-div 4 How to center DIV in DIV? Lukas 2008-09-22T12:27:57Z 2009-07-24T22:00:04Z <p>I'd like to ask you if anyone know how to horizontally center DIV in DIV with CSS ( if it's possible at all ). Outer DIV has 100%:</p> <pre><code>&lt;div id="outer" style="width:100%"&gt; &lt;div id="inner"&gt;Foo foo&lt;/div&gt; &lt;/div&gt; </code></pre> <p>I've been searching for the solution for some time but I haven't found it anywhere yet...</p> http://stackoverflow.com/questions/114543/how-to-center-div-in-div/114549#114549 19 Answer by Justin Poliey for How to center DIV in DIV? Justin Poliey 2008-09-22T12:29:07Z 2008-09-22T12:29:07Z <p>You can apply this CSS to the inner div:</p> <pre><code>#inner { width: 50%; margin: auto; } </code></pre> <p>Of course, you don't have to set the width to 50%. Any width less than the containing div will work. The <code>margin: auto</code> is what does the actual centering.</p> http://stackoverflow.com/questions/114543/how-to-center-div-in-div/114553#114553 1 Answer by gizmo for How to center DIV in DIV? gizmo 2008-09-22T12:30:08Z 2008-09-22T12:30:08Z <p>It cannot be centered if you don't give him a length, otherwise it will take, by default the hole horizontal space.</p> http://stackoverflow.com/questions/114543/how-to-center-div-in-div/1092640#1092640 0 Answer by Daniel Schultz for How to center DIV in DIV? Daniel Schultz 2009-07-07T14:24:10Z 2009-07-07T14:24:10Z <p>You could use margin-auto</p> http://stackoverflow.com/questions/114543/how-to-center-div-in-div/1180379#1180379 0 Answer by myid for How to center DIV in DIV? myid 2009-07-24T21:55:57Z 2009-07-24T21:55:57Z <p>Folks,</p> <p>Just a metacomment: <code>&lt;flame&gt;</code> there are many CSS suggestions on the Web. Most of them don't work on one or more types and versions of browsers, and some don't work on any browser (because they are guesses masquerading as advice). My feeling is that in most cases the authors (particularly of forum and blog comments) have not bothered to try what they suggest.</p> <p>I've been working with CSS for years, and I still don't know how to center horizontally and/or vertically with respect to a parent container. It's not because I'm stupid, and it's not because I haven't tried to read the CSS standards. It's because the CSS stardards are too complicated for browser creators to get right. Oh, and none of them come with a comprehensive set of test cases, either. <code>&lt;/flame&gt;</code></p> http://stackoverflow.com/questions/114543/how-to-center-div-in-div/1180400#1180400 0 Answer by Sneakyness for How to center DIV in DIV? Sneakyness 2009-07-24T22:00:04Z 2009-07-24T22:00:04Z <p>Set the width and set margin-left and margin-right to auto. That's for horizontal only, though. If you want both ways, you'd just do it both ways. Don't be afraid to experiment, it's not like you'll break anything</p>