博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
高度自适应
阅读量:6824 次
发布时间:2019-06-26

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

 

方案1:

Html:

1
2
3
4
<
div 
class="outer">
    
<
div 
class="A"> 头部DIV </
div
>
    
<
div 
class="B">下部DIV </
div
>
</
div
>

CSS:

1
2
3
4
5
html,
body { 
height
100%
padding
0
margin
0
; }
.outer { 
height
100%
padding
100px 
0 
0
; box-sizing: border-box ; 
position
relative
; }
.A { 
height
100px
background
#BBE8F2
position
absolute
top
0 
left
0 
width
100%
; }
.B { 
height
100%
background
#D9C666
; }

效果:

 

方案2:

HTML:

1
2
3
4
<
div 
class="outer">
    
<
div 
class="A">头部DIV</
div
>
    
<
div 
class="B">下部DIV</
div
>
</
div
>

CSS:

1
2
3
4
5
html,
body { 
height
100%
padding
0
margin
0
; }
.outer { 
height
100%
padding
100px 
0 
0
; box-sizing: border-box ; }
.A { 
height
100px
margin
-100px 
0 
0
background
#BBE8F2
; }
.B { 
height
100%
background
#D9C666
; }

效果:

转载于:https://www.cnblogs.com/Mickey697/p/10830510.html

你可能感兴趣的文章
Webgoat 笔记总结 Web Services
查看>>
Linux Mysql安装部署
查看>>
多线程 概述
查看>>
Nagios达到阈值时发不出告警邮件问题总结
查看>>
互联网公司应该要有的技术人员配置和开发事项清单
查看>>
Android开发中如何改变RadioButton背景图片和文字的相对位置
查看>>
如何给Linux (Fedora Ubuntu等)安装字体
查看>>
MySQL大小写敏感问题和命名规范
查看>>
java 获取时间 和 转换时间
查看>>
Redis主从复制
查看>>
mysql-5.6.26 主主复制
查看>>
SpringMVC权限管理
查看>>
ET120以太网环回器介绍
查看>>
ActiveMQ快速入门
查看>>
java自学篇之程序设计基础
查看>>
swiper的基础使用(五)
查看>>
Windows Server 2012R2 Hyper-v之虚拟机复制(2)
查看>>
大数据各种实用网站
查看>>
win7安装laravel
查看>>
Oracle 各后台进程功能说明
查看>>