专研WordPress,外贸B端网站建设及引流

设置子容器的高度,等于父容器的高度

设置子容器的高度,根据父容器的高度来决定

父容器设置

div.parent{
    position:relative;
    overflow:hidden;
}

子容器设置

div.child{
    position:absolute;
    width:100%;
    height:100%;
    align-items:center;
    justify-content:center;
}