I want to center the content but the #left, #center#right are floated.
the tendency of the Content if height is not specified… the #left#center etc. is outside the Content.
I want to see the #left#center#right is inside the Content div tag in browser the height of the #left is dynamic… it can be long
it can be short.
Here is the CSS
#content{
width:50em;
margin:0 auto; /*for centering (or if you have other way to center it*/
}
#left, #center, #right{
width:32%;
float:left;
height:15em; /*This is just to see the panels*/
margin-left:1em;
}