父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;
}
}
本文标题:CSS实现子div在父div的底部
本文链接:https://www.haomeiwen.com/subject/rbrvsktx.html
网友评论