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?

#parentdiv? There is nothing in there that would center#parentwhether floats were being used or not – My Head Hurts Oct 10 '12 at 13:50margin-rightandmargin-left:auto– user1370752 Oct 10 '12 at 13:54#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:56width:auto. Thanks – user1370752 Oct 10 '12 at 14:04