CSS:上面固定高度、下面填充满,上面消失,下面仍然填充满

html 复制代码
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Document</title>
</head>
<style>
  html, body {
  height: 100%;
  margin: 0;
}

.container {
  display: flex;
  flex-direction: column;
  height: 100%; /* 使用最小高度来确保占据整个屏幕 */
}

.top {
  height: 100px;
  background-color: lightgray;
}

.bottom {
  flex-grow: 1;
  background-color: lightblue;
}
</style>
<body>
  <div class="container">
    <div class="top">上</div>
    <div class="bottom">下</div>
  </div>
</body>
</html>
相关推荐
昔人'2 小时前
css `svh` 单位
前端·css
华仔啊2 小时前
CSS常用函数:从calc到clamp,实现动态渐变、滤镜与变换
前端·css
灵犀坠3 小时前
前端面试&项目实战核心知识点总结(Vue3+Pinia+UniApp+Axios)
前端·javascript·css·面试·职场和发展·uni-app·html
Highcharts.js3 小时前
Highcharts 仪表板 CSS 样式定制使用说明
前端·css·仪表板·highcharts·css 样式
爱吃无爪鱼4 小时前
02-前端开发核心概念完全指南
css·vue.js·前端框架·npm·node.js·sass
心随雨下4 小时前
Flutter加载自定义CSS样式文件方法
前端·css·flutter
GDAL4 小时前
css实现元素居中的18种方法
前端·css·面试·html·css3·css居中
昔人'20 小时前
CSS content-visibility
前端·css
JackieDYH1 天前
CSS滚动吸附详解:构建精准流畅的滚动体验-scroll-snap-type
前端·css
软件技术NINI1 天前
html css js网页制作成品——敖瑞鹏html+css+js 4页附源码
javascript·css·html