Quote:
Originally Posted by jeddi
I thought this would center everything inside it. ??
Code:
#mainC {
width:100%;
margin:0px auto;
}
|
No, not quite. In that bit of CSS the
margin: 0 auto; only affects the
outside of #mainC, not the contents. It can't center #mainC because, at 100% width, there is nothing to center.