博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
flex上中下布局,header,footer固定
阅读量:6184 次
发布时间:2019-06-21

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

<!doctype html>

<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="Generator" content="EditPlus®">
<meta name="Author" content="">
<meta name="Keywords" content="">
<meta name="Description" content="">
<title>Document</title>
<style type="text/css">
*{
margin:0;
padding:0;
}
html,body{
width:100%;
height:100%;
}
.wrap{
display:flex;
flex-direction:column;
height:100%;
}
.header,.footer{
height:80px;
width:100%;
background:#ccc;
}
.main{
flex:1;
background:#f60;
overflow-y:auto;

}

.main p{
line-height:10;
}
</style>
</head>
<body>
<div class="wrap">
<div class="header">
header
</div>
<div class="main">
main
<p>1</p>
<p>1</p>

<p>1</p>

<p>1</p>
<p>1</p>
<p>1</p>
<p>1</p>
<p>1</p>
<p>1</p>
<p>1</p>
<p>1</p>
<p>1</p>
<p>1</p>
<p>1</p>

<p>1</p>

<p>1</p>
<p>4</p>
<p>4</p>
</div>
<div class="footer">
footer
</div>
</div>

</body>

</html>

转载于:https://www.cnblogs.com/zhouzhou163/p/6100462.html

你可能感兴趣的文章
利用R语言实现支持向量机(SVM)数据挖掘案例
查看>>
Bash shell脚本的语法结构
查看>>
linux sftp相关命令
查看>>
Like 关键字对时间模糊查询
查看>>
STL之容器共性
查看>>
金笛JDMail邮件系统从源头上为企业铸造防lj邮件墙--3
查看>>
ArcGis for Javascript 的使用注意点
查看>>
FileWriter不能写utf-8的原因及解决
查看>>
IOCP (关于WSASend,WSARecv调用)
查看>>
MOOON-scheduler核心设计图(初稿)
查看>>
网站开发的流程
查看>>
Apache Common-pool2对象池浅析
查看>>
Microsoft Hyper-V Server 2008 R2和SCVMM2012部署XenDesktop 5.6桌面虚拟化系列之二准备虚拟桌面模板...
查看>>
我的友情链接
查看>>
改变虚拟机MAC地址
查看>>
solr教程
查看>>
我的友情链接
查看>>
钱旺之行:互联网经济的增长点——注意力价值经济
查看>>
hadoop Map-Reduce体系架构(3)
查看>>
android语音朗读功能demo实现
查看>>