>  기사  >  웹 프론트엔드  >  css浮动问题_html/css_WEB-ITnose

css浮动问题_html/css_WEB-ITnose

WBOY
WBOY원래의
2016-06-24 11:41:551067검색







#a{
height:auto!important;
        height:800px;
       min-height:800px;
width:1015px;
margin:0 auto;
border:1px solid #B10000;
}

#b{
height:auto!important;
      height:600px;
       min-height:600px;
width:831px;
border:1px solid #DFDFDF;
float:left;
}

请问高手怎么样才能让b的内容大于800px时,撑开a,
注加Div都行,只要能撑开。


回复讨论(解决方案)

撑开a 是上面意思呢

a.width = b.width+215吗

不是意思,是高度

a中仅设置min-height:800px;,,,height不要写。。。

#a{	height:auto!important;        height:800px;       min-height:800px;width:1015px;	margin:0 auto;	border:1px solid #B10000;overflow:auto;}

试一下吧。。。。。

#a{
height:auto!important;
        height:800px;
       min-height:800px;
width:1015px;
margin:0 auto;
border:1px solid #B10000;
overflow:auto;
}

规范很重要!
有浮动了,难道不清除吗?
清除浮动,问题迎刃而解,overflow什么的根本不需要写。

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.