2 回答
TA贡献1848条经验 获得超10个赞
<style>
*{
padding: 0;
margin: 0;
box-sizing: border-box;
}
html,body{
width: 100%;
height: 100%;
}
.box{
width: 100%;
height: 100%;
background-color: aqua;
}
.content{
height: 80%;
background-color: red;
}
.btn{
height: 20%;
padding-top: 5%;
text-align: center;
}
button{
width: 30%;
height: 50%;
}
</style>
<div class="box">
<div class="content"></div>
<div class="btn">
<button>btn</button>
</div>
</div>
或者 flex,思路是一样的,分成两块就可以了
.box{
display:flex;
flex-firection-column;
}
.content{
flex:1;
}
.btn{
height:100%;
}
添加回答
举报