vote up 4 vote down star
2

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%:

<div id="outer" style="width:100%">  
     <div id="inner">Foo foo</div>
</div>

I've been searching for the solution for some time but I haven't found it anywhere yet...

flag

5 Answers

vote up 19 vote down check

You can apply this CSS to the inner div:

#inner {
    width: 50%;
    margin: auto;
}

Of course, you don't have to set the width to 50%. Any width less than the containing div will work. The margin: auto is what does the actual centering.

link|flag
I believe IE 6 requires an additional rule text-align:center on the containing DIV. – pdc Sep 22 '08 at 12:31
2  
It doesn't, except in Quirks mode, and you have to take counter measures to stop the center alignment influencing the content of the inner div. dorward.me.uk/www/centre/#ie has details. – David Dorward Sep 22 '08 at 12:33
Shouldn't it be margin: 0px auto;, otherwise if you also specificy a height it will vertically align it? – Rory Fitzpatrick Sep 22 '08 at 12:43
1  
Auto top and bottom margins do not vertically centre elements. – David Dorward Sep 22 '08 at 12:43
vote up 1 vote down

It cannot be centered if you don't give him a length, otherwise it will take, by default the hole horizontal space.

link|flag
vote up 0 vote down

You could use margin-auto

link|flag
vote up 0 vote down

Folks,

Just a metacomment: <flame> 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.

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. </flame>

link|flag
It really isn't that hard, especially if you're using a nice editor like coda. Box model does seem complicated, but you know what? Printing shit on paper is twice as complex, and most people don't realize that. CSS dreams of offering the level of control over content like that, and it will be there soon. I suggest jumping in now before the hole gets too deep. – Sneakyness Jul 24 at 22:04
vote up 0 vote down

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

link|flag
Other than your layout, that is ;) – Sneakyness Jul 24 at 22:00

Your Answer

Get an OpenID
or

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