Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Quite a "simple" problem here and not sure why it's being so complicated.

  1. Have a 100% (width) sized div.
  2. Have another div positioned in the middle of this div (sized 940px width)

Any ideas? :)

share|improve this question
possible duplicate of How to center DIV in DIV? – slugster Oct 22 '11 at 7:49

6 Answers

up vote 21 down vote accepted
.parent { text-align: center; }
.parent > .child { margin: 0 auto; width: 900px; }
share|improve this answer
I was missing the text-align it seems as i had the margin and wasn't working. Accepted, cheers. – Shadi Almosri Sep 14 '09 at 20:16
3  
text-align:center does not help with centering the inner div. – Vizjerai Sep 14 '09 at 20:18
1  
centers the stuff (text) inside though, resulting in the same desired outcome (if you only have text). for auto-margin to work, you also need a width on the inner div. – geowa4 Sep 14 '09 at 20:25
4  
The child selector > won't work in IE6, in case you care. – ScottE Sep 14 '09 at 20:29

The below style to the inner div will center it.

margin: 0 auto;
share|improve this answer

for detail info, let's say the code below will make a div aligned center:

margin-left: auto;
margin-right: auto;

or simply use:

margin: 0 auto;

but bear in mind, the above CSS code only works when you specify a fixed width (not 100%) on your html element. so the complete solution for your issue would be:

.your-inner-div {
      margin: 0 auto;
      width: 900px;
}
share|improve this answer
This is a great example because you correctly explicitly point out that a width on the inner div is required. – Bill Ayakatubby Oct 4 '09 at 16:22

The key is the margin: 0 auto; on the inner div. A proof-of-concept example:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<body>
    <div style="background-color: blue; width: 100%;">
    	<div style="background-color: yellow; width: 940px; margin: 0 auto;">
    		Test
    	</div>
    </div>
</body>
</html>
share|improve this answer
2  
This is a good answer as it's crucial to have the right doc type if you're using the margin: 0 auto technique – ScottE Sep 14 '09 at 21:00

Just add margin: 0 auto; to the inside div.

share|improve this answer
.outerdiv {
    margin-left: auto;
    margin-right: auto;
    display: table;
}

Doesn't work in internet explorer 7... but who cares ?

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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