How to center DIV in DIV? - Stack Overflow most recent 30 from stackoverflow.com2009-12-06T10:00:06Zhttp://stackoverflow.com/feeds/question/114543http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/114543/how-to-center-div-in-div4How to center DIV in DIV?Lukas2008-09-22T12:27:57Z2009-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><div id="outer" style="width:100%">
<div id="inner">Foo foo</div>
</div>
</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#11454919Answer by Justin Poliey for How to center DIV in DIV?Justin Poliey2008-09-22T12:29:07Z2008-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#1145531Answer by gizmo for How to center DIV in DIV?gizmo2008-09-22T12:30:08Z2008-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#10926400Answer by Daniel Schultz for How to center DIV in DIV?Daniel Schultz2009-07-07T14:24:10Z2009-07-07T14:24:10Z<p>You could use margin-auto</p>
http://stackoverflow.com/questions/114543/how-to-center-div-in-div/1180379#11803790Answer by myid for How to center DIV in DIV?myid2009-07-24T21:55:57Z2009-07-24T21:55:57Z<p>Folks,</p>
<p>Just a metacomment: <code><flame></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></flame></code></p>
http://stackoverflow.com/questions/114543/how-to-center-div-in-div/1180400#11804000Answer by Sneakyness for How to center DIV in DIV?Sneakyness2009-07-24T22:00:04Z2009-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>