- HTML中文网
- 联系QQ:18840023
- QQ交流群
- 微信公众号
CSS3 弹性盒子(Flex Box)
弹性盒子是 CSS3 的一种新的布局模式
CSS3 弹性盒子( Flexible Box 或 flexbox),是一种当页面需要适应不同的屏幕大小以及设备类型时确保元素拥有恰当的行为的布局方式
引入弹性盒布局模型的目的是提供一种更加有效的方式来对一个容器中的子元素进行排列、对齐和分配空白空间
浏览器支持
表格中的数字表示支持该属性的第一个浏览器的版本号
紧跟在数字后面的 -webkit- 或 -moz- 为指定浏览器的前缀
属性 | |||||
---|---|---|---|---|---|
Basic support (single-line flexbox) | 11.0 | 29.0 21.0 -webkit- | 22.0 18.0 -moz- | 6.1 -webkit- | 12.1 -webkit- |
Multi-line flexbox | 11.0 | 29.0 21.0 -webkit- | 28.0 | 6.1 -webkit- | 17.0 15.0 -webkit- 12.1 |
CSS3 弹性盒子内容
弹性盒子由弹性容器(Flex container)和弹性子元素(Flex item)组成
弹性容器通过设置 display 属性的值为 flex 或 inline-flex将其定义为弹性容器。
弹性容器内包含了一个或多个弹性子元素。
注意: 弹性容器外及弹性子元素内是正常渲染的。弹性盒子只定义了弹性子元素如何在弹性容器内布局。
弹性子元素通常在弹性盒子内一行显示。默认情况每个容器只有一行。
CSS3弹性盒子属性值:
flex-direction属性
flex-direction 属性指定了弹性子元素在父容器中的位置。
CSS语法
flex-direction: row | row-reverse | column | column-reverse
row:横向从左到右排列(左对齐),默认的排列方式
row-reverse:反转横向排列(右对齐,从后往前排,最后一项排在最前面)
column:纵向排列
column-reverse:反转纵向排列,从后往前排,最后一项排在最上面
.flex-container { display: -webkit-flex; display: flex; -webkit-flex-direction: row-reverse; flex-direction: row-reverse; width: 450px; height: 300px; background-color:#b7cf9b; } .flex-item { background-color:pink; width: 100px; height: 100px; margin: 25px; }
点击 "运行实例" 按钮查看在线实例
效果图:
justify-content 属性
justify-content属性表示内容对齐,应用在弹性容器上,把弹性项沿着弹性容器的主轴线(main axis)对齐
CSS语法
justify-content: flex-start | flex-end | center | space-between | space-around
flex-start:项目位于容器的开头,默认值。
flex-end:项目位于容器的结尾
center:项目位于容器的中心
space-between:项目位于各行之间留有空白的容器内
space-around:项目位于各行之前、之间、之后都留有空白的容器内
.flex-container { display: -webkit-flex; display: flex; -webkit-justify-content: space-between; justify-content: space-between; width: 450px; height: 300px; background-color:#b7cf9b; } .flex-item { background-color:pink; width: 100px; height: 100px; margin: 25px; }
点击 "运行实例" 按钮查看在线实例
效果图:
align-items 属性
align-items 属性设置或检索弹性盒子元素在侧轴(纵轴)方向上的对齐方式。
CSS语法
align-items: flex-start | flex-end | center | baseline | stretch
flex-start:元素位于容器的开头
flex-end:元素位于容器的结尾
center:元素位于容器的中心
baseline:元素位于容器的基线上
stretch:默认值。元素被拉伸以适应容器
.flex-container { display: -webkit-flex; display: flex; -webkit-align-items: flex-end; align-items: flex-end; width: 450px; height: 300px; background-color:#b7cf9b; } .flex-item { background-color:pink; width: 100px; height: 100px; margin: 25px; }
点击 "运行实例" 按钮查看在线实例
效果图:
flex-wrap 属性
flex-wrap 属性用于指定弹性盒子的子元素换行方式。
CSS语法
flex-wrap: nowrap|wrap|wrap-reverse|initial|inherit;
nowrap:默认,弹性容器为单行,该情况下弹性子项可能会溢出容器。
wrap :弹性容器为多行,该情况下弹性子项溢出的部分会被放置到新行,子项内部会发生断行
wrap-reverse :反转 wrap 排列
.flex-container { display: -webkit-flex; display: flex; -webkit-flex-wrap: wrap-reverse; flex-wrap: wrap-reverse; width: 450px; height: 300px; background-color:#b7cf9b; } .flex-item { background-color:pink; width: 100px; height: 100px; margin: 25px; }
点击 "运行实例" 按钮查看在线实例
效果图:
align-content 属性
align-content 属性用于修改 flex-wrap 属性的行为。用于设置各个行的对齐
CSS语法
align-content: flex-start | flex-end | center | space-between | space-around | stretch
stretch :各行将会伸展以占用剩余的空间,默认值
flex-start:各行向弹性盒容器的起始位置堆叠
flex-end: 各行向弹性盒容器的结束位置堆叠
center :各行向弹性盒容器的中间位置堆叠
space-between:各行在弹性盒容器中平均分布
space-around:各行在弹性盒容器中平均分布,两端保留子元素与子元素之间间距大小的一半
.flex-container { display: -webkit-flex; display: flex; -webkit-flex-wrap: wrap; flex-wrap: wrap; -webkit-align-content: center; align-content: center; width: 450px; height: 300px; background-color:#b7cf9b; } .flex-item { background-color:pink; width: 100px; height: 100px; margin: 25px; }
点击 "运行实例" 按钮查看在线实例
效果图:
属性 | 描述 |
---|---|
display | 指定 HTML元素盒子类型。 |
flex-direction | 指定了弹性容器中子元素的排列方式 |
justify-content | 设置弹性盒子元素在主轴(横轴)方向上的对齐方式。 |
align-items | 设置弹性盒子元素在侧轴(纵轴)方向上的对齐方式。 |
flex-wrap | 设置弹性盒子的子元素超出父容器时是否换行。 |
align-content | 修改 flex-wrap 属性的行为,类似 align-items, 但不是设置子元素对齐,而是设置行对齐 |
flex-flow | flex-direction 和 flex-wrap 的简写 |
order | 设置弹性盒子的子元素排列顺序。 |
align-self | 在弹性子元素上使用。覆盖容器的 align-items 属性。 |
flex | 设置弹性盒子的子元素如何分配空间。 |
flex-grow | 设置或检索弹性盒的扩展比率。 |
flex-shrink | 设置或检索弹性盒的收缩比率 |
flex-basis | 设置或检索弹性盒伸缩基准值。 |
推荐手册