<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>flex 圣杯布局</title>
<style>
html,body,header,main,footer{
padding: 0;
margin: 0;
}
body,html{
display: flex;
flex-direction: column;
height: 100%;
}
header{
flex: 0 0 60px;
background-color: green;
}
footer{
flex: 0 0 40px;
background-color: green;
}
main{
flex: 1;
display: flex;
}
nav,aside{
flex: 0 0 150px;
background-color: aqua;
}
section{
flex: 1;
background-color: antiquewhite;
display: flex;
justify-content: center;
height: 100%;
align-items: center;
}
![1114.jpg](https://upload-images.jianshu.io/upload_images/12675829-304762c023a7f2a8.jpg?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240)
.box{
width: 100px;
height: 100px;
background-color: red;
margin: 0 2px;
}
</style>
</head>
<body>
<header></header>
<main>
<nav></nav>
<section>
<div class="box"></div>
<div class="box"></div>
<div class="box"></div>
</section>
<aside></aside>
</main>
<footer></footer>
</body>
</html>
1-移动端felx 圣杯布局
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
推荐阅读更多精彩内容
- 上一篇文章为:→1.6.1移动端页面开发过程 移动端布局实例 1、结合流体布局和响应式布局制作天天生鲜移动端首页页...
- 三列布局 (1)两边固定 当中自适应(2)当中列要完整显示(3)当中列要优先加载 1. 定位方式(不好,下面说明...
- 本文帮大家快速上手flex弹性盒模型布局,如果需要详细文档请看下面链接:http://www.ruanyifeng...
- Flexible Box 模型,通常被称为 flexbox,是一种一维的布局模型。它给 flexbox 的子元素之...
- 现在Adobe的产品发展得很像WIN10,每个版本的递增都是以时间来确定的。版本间像挤牙膏似的挤出一些新功能,每年...