博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
css实现div的高度填满剩余空间
阅读量:4958 次
发布时间:2019-06-12

本文共 580 字,大约阅读时间需要 1 分钟。

css实现div的高度填满剩余空间

方式1:绝对定位

.top{

width: 100%;
height: 70px;
}

.bottom{

background-color: #cc85d9;
width: 100%;
position: absolute;
top: 70px;
bottom: 0px;
left: 0px;
}

 方式2:border-sizing

html,

body {
height: 100%;
padding: 0;
margin: 0;
}
.container {
height: 100%;
padding: 70px 0 0;
box-sizing: border-box;
}

.bottom {

height: 100%;
background: #fd9740;
}

.top {

height: 70px;
margin: -70px 0 0;
background: #61e1f6;

width: 100%;

}

或者

.top {

height: 70px;

position: absolute;

top: 0;

left: 0;

background: #61e1f6;

width: 100%;

}

 

转载于:https://www.cnblogs.com/youngMe/p/5806925.html

你可能感兴趣的文章
div 只显示两行超出部分隐藏
查看>>
C#小练习ⅲ
查看>>
电源防反接保护电路
查看>>
arraylist
查看>>
zoj 1649 Rescue (BFS)(转载)
查看>>
2124: 等差子序列 - BZOJ
查看>>
字符串匹配算法综述
查看>>
Linux centosVMware shell 管道符和作业控制、shell变量、环境变量配置文件
查看>>
【设计模式】工厂模式
查看>>
两个表格中数据不用是一一对应关系--来筛选不同数据,或者相同数据
查看>>
客户数据库出现大量cache buffer chains latch
查看>>
機械の総合病院 [MISSION LEVEL: C]
查看>>
实战练习细节(分行/拼接字符串/字符串转int/weak和copy)
查看>>
Strict Standards: Only variables should be passed by reference
查看>>
hiho_offer收割18_题解报告_差第四题
查看>>
AngularJs表单验证
查看>>
静态方法是否属于线程安全
查看>>
02号团队-团队任务3:每日立会(2018-12-05)
查看>>
SQLite移植手记1
查看>>
C# windows程序应用与JavaScript 程序交互实现例子
查看>>