nbsp;HTML>
而且 我把page 里的float:left;换成margin: 0 auto;就可以在 main_all里了,这是我从我的页面挑出来的代码,当我不把page 里的float:left;换成margin: 0 auto;时,还会造成附件的css失效
把float:left; 拿掉。 你这样叫做浮动塌陷,要么清除浮动。
<!DOCTYPE HTML><html><head> <style type="text/css">.main_all{border:1px solid red;width:1200px;margin: 0 auto;}.page{border:1px solid blue;width:1200px;float:left;height:40px;line-height:40px;text-align:center;}</style></head><body><div class="main_all"><div class="page">dsadas</div><div style="clear:both;"></div> </div> </body></html>
谢谢大神!!!!