Flex弹性盒子
1.说在前头
1.1.Flex布局出现之前
- 我们知道传统的页面布局依赖于 盒状模型
- 依赖于display、position、float属性
- 对于某些特殊布局来说特别不方便,比如垂直居中(比较不容易实现)
1.2.Flex布局出现后
- 2009年,W3C提出Flex布局
- 简便、完整、响应式的各种实现页面布局(目前已得到所有主流浏览器的支持)
- 意味着我们能很安全的使用这个功能
2.什么是Flex布局?
- Flex就是弹性布局
- 弹性布局中弹性容器三个子元素,可以在任何方向上排布,可以任意伸缩它的尺寸
- 一个Flexbox只能处理一个维度的布局
- 基本构造
3.Flex container/item(父/子容器)的常用属性
针对于容器的 | 针对于item的 |
flex-direction | flex-grow |
flex-wrap | flex-shrink |
flex-flow | flex-basis |
align-items | flex |
align-content | align-self |
justify-content | order |
4.Let’s Codeing(父容器的属性)
4.1.display:flex;
- 当父元素设置为display:flex;的时候,它所有的子元素都成为它特有的成员,有自己的排列方式如图
html
<div class="container"> <div class="item">1</div> <div class="item">2</div> <div class="item">3</div> <div class="item">4</div> <div class="item">5</div> <div class="item">6</div> </div>
css
.container{ margin:150px auto; max-width: 800px; height: 400px; background-color: rgb(196, 229, 232); border: 5px solid rgb(0, 181, 203); display: flex; } .item{ background-color: rgb(0, 181, 203); color: white; width: 100px; height: 100px; margin: 2px; font-weight: bold; font-size: 5em; text-align: center; }
(王爷)演示
加入display:flex;
.container{ margin:150px auto; max-width: 800px; height: 400px; background-color: rgb(196, 229, 232); border: 5px solid rgb(0, 181, 203); display: flex; <----- }
4.2.flex-direction ~ ~ ~ 容器排列方式
- flex-direction: row(默认值 横向 从左至右))
- flex-direction: row-reverse(横向 从右至左)
- flex-direction: column(竖向 从上至下)
- flex-direction: column-reverse(竖向 从下至上)
4.3.flex-wrap……子项目多行
- flex-wrap: nowrap ;(默认值 不换行)
- lex-wrap: wrap ;(换行)
- flex-wrap: wrap-reverse ;(倒序换行)
- 我们试试两个属性一起使用
- 将排列设置横向倒序排列(row-reverse)
- 将换行设置为自动换行(wrap)
flex-flow: row-reverse wrap;
4.4.justify-content……用于设置或检索弹性盒子元素在主轴(横轴)方向上的对齐方式。
- justify-content: flex-start ;(默认值 水平开始位置)
- justify-content: flex-end;( 水平结束位置)
- justify-content: flex-end;(水平局中位置)
- justify-content: space-around;(两边留有1/2间距,中间水平分布)
- justify-content: space-between;(两边不留间距,中间水平分布)
- justify-content: space-evenly;(水平分布 部分浏览器兼容性不好)
- 我们再看一下 space-around 和 space-between 的区别
- 综上所述 - - 可能有人会觉得发明这两个属性的人一定闲的蛋疼 😂
4.5.align-content……副轴(竖轴)对齐方式(适用于多行)
属性在弹性容器内的各项没有占用交叉轴上所有可用的空间时对齐容器内的各项(垂直)。
align-content: stretch ;( 默认值 )
align-content: flex-start ; ( 多行子项目 位于垂直顶部位置 )
align-content: flex-end ; (多行子项目 位于垂直尾部位置)
align-content: center ;(多行子项目 一起垂直居中)
align-content: space-around ;(两边留有1/2间距,中间水平分布)
align-content: space-between ;(两边不留距离 ,且垂直平均分布)
4.6.align-items……垂直对齐方式(适用于单行)
- align-items: stretch ;(默认值 当子项目没有设置高度时 高度自动延申充满)
- align-items: flex-start ;(垂直方向 顶部位置)
- align-items: flex-end ;(垂直方向 尾部位置)
- align-items: center ;(垂直方向 居中位置)
- align-items: baseline ;(垂直方向 基线对齐)