div居中center

[b][color=green]div居中[/color][/b]


除了指定margin为auto外,
还要给width赋值。


如:

#centdiv{
width:500px;
margin:auto;
}


如果不指定width,则不会居中显示。


-