Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.


when i want to float a child div to left or right inside the centered parent div, the whole design goes left or right, depending on the float. So, how to float a child div and make the centered parent div in the center.

HTML:

<div id="parent">
<div id="child-left"></div>
<div id="child-right"></div>
</div>

CSS:

#parent{
    padding: 0 auto;
    width: 600px;
}
#child-left{
    float: left;
    width: 300px;
}
#child-right{
    float: right;
    width: 300px;
}



Why does parent div go left/right, and doesn't stay in center? And how to make it to stay in center?

share|improve this question
How are you centering the #parent div? There is nothing in there that would center #parent whether floats were being used or not – My Head Hurts Oct 10 '12 at 13:50
i've put for margin-right and margin-left:auto – user1370752 Oct 10 '12 at 13:54
1  
Inside #parent? In that case your code should work (see here). Maybe you can knock us up an example JsFiddle - or feel free to edit mine - that reproduces the problem – My Head Hurts Oct 10 '12 at 13:56
you're right, it was because I didn't set the width for the parent div at first, but left it to be width:auto. Thanks – user1370752 Oct 10 '12 at 14:04

3 Answers

up vote 1 down vote accepted

See the demo

#parent{
    padding: 0px, auto;
    width: 605px;
  height:200px;
  border:solid 1px #f00;
}
#child-left{
  float: left;
  width: 300px;
  height:200px;
  border:solid 1px #0F0;
}
#child-right{
    float: right;
    width: 300px;
   height:200px;
  border:solid 1px #00F;
}
share|improve this answer
1  
I'm confused...this won't center the #parent element and the example linked in the answer shows that. Why is this the accepted answer? If this solves your problem then I think you need to change your question to avoid confusing any future visitors – My Head Hurts Oct 10 '12 at 14:02

For parent div you use this css code

margin:0 auto;
width:980px;

and for child u use this code for float

float:right or left;
width:anypx;

best regards

share|improve this answer
I do like that too, but in some cases the parent div floats to left/right, although it should stay centered – user1370752 Oct 10 '12 at 13:57
1  
you use this style for parent float:none; – Saeed Py Oct 10 '12 at 14:02
thanks, forgot about that – user1370752 Oct 10 '12 at 14:06

To center the parent element, use margin: 0 auto;

#parent{
    margin: 0 auto;
    width: 600px;
}

There are also lots of spelling mistakes in your code (chile not child), and missing > symbols, fix them before you continue

A working JSFiddle (Click me)

share|improve this answer
ty, I corrected the code – user1370752 Oct 10 '12 at 13:55

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.