前端开发中学会让子级固定在父级元素的底部的技巧很有用哦。
实现效果:
案例源码
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>子级元素固定在父级元素底部</title>
<meta name="viewport" content="width=device-width,initial-scale=1,minimum-scale=1,maximum-scale=1,user-scalable=no" />
<style>
.box1 {
height: 200px;
background: #999999;
/* 相对定位 */
position: relative
}
.box2 {
width: 100%;
height: 40px;
background: #AAAAAA;
/* 绝对定位 */
position: absolute;
bottom: 0
}
</style>
</head>
<body>
<div class="box1">
父级元素
<div class="box2">
子级元素
</div>
</div>
</body>
<