Flex 布局教程

前端开发 作者: 2024-08-20 16:40:01
一、Flex 布局是什么? Flex 是 Flexible Box 的缩写,意为"弹性布局",用来为盒状模型提供最大的灵活性。 任何一个容器都可以指定为 Flex 布局。 .box
.box{
  display: flex;
}
 inline-flex;
}
 -webkit-flex; /* Safari */ flex;
}
flex-direction
flex-wrap
flex-flow
justify-content
align-items
align-content

3.1 flex-direction属性

.box {
  flex-direction: row | row-reverse | column | column-reverse;
}
row(默认值):主轴为水平方向,起点在左端。
row-reverse:主轴为水平方向,起点在右端。
column:主轴为垂直方向,起点在上沿。
column-reverse:主轴为垂直方向,起点在下沿。

3.2 flex-wrap属性


  flex-wrap: nowrap | wrap | wrap-reverse;
}

3.3 flex-flow


  flex-flow: <flex-direction> || <flex-wrap>;
}

3.4 justify-content属性


  justify-content: flex-start | flex-end | center | space-between | space-around;
}
flex-start(默认值):左对齐
flex-end:右对齐
center: 居中
space-between:两端对齐,项目之间的间隔都相等。
space-around:每个项目两侧的间隔相等。所以,项目之间的间隔比项目与边框的间隔大一倍。

3.5 align-items属性


  align-items: flex-start | flex-end | center | baseline | stretch;
}
flex-start:交叉轴的起点对齐。
flex-end:交叉轴的终点对齐。
center:交叉轴的中点对齐。
baseline: 项目的第一行文字的基线对齐。
stretch(默认值):如果项目未设置高度或设为auto,将占满整个容器的高度。

align-content属性


  align-content: flex-start | flex-end | center | space-between | space-around | stretch;
}
flex-start:与交叉轴的起点对齐。
flex-end:与交叉轴的终点对齐。
center:与交叉轴的中点对齐。
space-between:与交叉轴两端对齐,轴线之间的间隔平均分布。
space-around:每根轴线两侧的间隔都相等。所以,轴线之间的间隔比轴线与边框的间隔大一倍。
stretch(默认值):轴线占满整个交叉轴。
order
flex-grow
flex-shrink
flex-basis
flex
align-self

4.1 order属性

.item {
  order: <integer>;
}

4.2 flex-grow属性


  flex-grow: <number>;  default 0 */
}

4.3 flex-shrink属性


  flex-shrink: default 1 */
}

4.4 flex-basis属性


  flex-basis: <length> | auto;  default auto */
}

4.5 flex属性


  flex: none | [ <'flex-grow'> <'flex-shrink'>? || <'flex-basis'> ]
}

4.6 align-self属性


  align-self: auto | flex-start | flex-end | center | baseline | stretch;
}
原创声明
本站部分文章基于互联网的整理,我们会把真正“有用/优质”的文章整理提供给各位开发者。本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。
本文链接:http://www.jiecseo.com/news/show_65614.html
Flex 布局教程