首页 >web前端 >html教程 >div 高度自适应的问题_html/css_WEB-ITnose

div 高度自适应的问题_html/css_WEB-ITnose

WBOY
WBOY原创
2016-06-24 11:57:00954浏览

nbsp;HTML>


 



dsadas

   


    


代码如上,div page实在main_all里的  为什么div main_all的高度不自增,要如何做到这样的自增


回复讨论(解决方案)

而且  我把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>  

 

清除浮动常用的方法

谢谢大神!!!!

声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn