我有一个非常简单的场景

父 Div(未指定高度)

子 div 有一些内容和高度设置为 100%。

现在这个子 div 强制其父级拉伸(stretch)到完整的浏览器窗口。

请指导。

最佳答案

在两者上设置位置。

#ParentDiv {
    position:relative;
    height:auto;
}

#ChildDiv {
    position:absolute;
    /* top/left/right force it to dimensions of parent, if needed */
    top:0;
    left:0;
    right:0;
    height:100%;
}

parent 会拉伸(stretch)以适应 child 。

关于css - 子 div 100% 高度拉伸(stretch)父 div 以及,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/14406812/

10-13 00:40