這是一個asp.net中的CSS問題。
我有一個被容器div包圍的頁面。其中包含div#contenthome
,其中div#flashhome
。如何設置高度自動CSS屬性?
#Container
and #contenthome
height屬性設置爲auto。但是當我增加#flashhome
高度時,#container
和#contenthome
高度並沒有相應改變。如何根據#flashhome
高度實現自動增加和減少#container
和#contenthome
高度。
#container {
width: 750px;
height: auto;
margin-left: auto;
margin-right: auto;
position: relative;
border:1px;
border-color: #b7b7b7;
border-style: solid;
}
#contentHome {
width: 750px;
height: auto;
position: relative;
display: block;
overflow: hidden;
}
#flashHome {
float: left;
display: block;
width:485px;
height: 255px;
margin-left: 15px;
margin-top: 5px;
}