有什麼辦法包括children elements size whose position is absolute
到那裏parents size
,我的意思是說:Element`s絕對定位的問題
我們:
標記
<div class="parent">
<div class="children">
My position is absolute.
</div>
</div>
CSS
.parent // position by default static
{
width:100%;
height:auto;
}
.children
{
position :absolute;
width:100%;
height:auto;
}
我的問題是父母的高度是0,可能是因爲孩子的絕對定位。那麼是否有任何解決方法?
您是否嘗試過加入'溢出:hidden'到'.parent'元素? –
是的,我試過但沒有工作 –
你想達到什麼目的? –