父div的位置设置成相对的,即“position: relative;”。
子div的位置设置成绝对的,并且下边缘设为0,即“position: absolute; bottom: 0;”。
.father {
position: relative;
.child{
position: absolute;
bottom: 0;
}
}
父div的位置设置成相对的,即“position: relative;”。
子div的位置设置成绝对的,并且下边缘设为0,即“position: absolute; bottom: 0;”。
.father {
position: relative;
.child{
position: absolute;
bottom: 0;
}
}