CSS中Flexbox

关键词:display:flex

Flex是Flexible Box的缩写,意为"弹性布局",用来为盒状模型提供最大的灵活性。

辨析:和display:box用法差不多,不过前者要加浏览器后缀,已经废弃

**注意 : **设为Flex布局以后,子元素的float、clear和vertical-align属性将失效。


父容器属性:

  • flex-direction
  • flex-wrap
  • flex-flow
  • justify-content
  • align-items
  • align-content

1. flex-direction属性

  • flex-direction属性决定主轴的方向(即项目的排列方向)。
  • flex-direction: row | row-reverse | column | column-reverse;

2. flex-wrap属性

  • 默认情况下,项目都排在一条线(又称"轴线")上。flex-wrap属性定义,如果一条轴线排不下,如何换行。
  • flex-wrap: nowrap | wrap | wrap-reverse;

3. flex-flow属性

  • flex-flow属性是flex-direction属性和flex-wrap属性的简写形式,默认值为row nowrap。
  • flex-flow: || ;

4. justify-content属性

  • justify-content属性定义了项目在主轴上的对齐方式。
  • justify-content: flex-start | flex-end | center | space-between | space-around;

5.align-items属性

  • align-items属性定义项目在交叉轴上如何对齐。
  • align-items: flex-start | flex-end | center | baseline | stretch;

6. align-content属性

  • align-content属性定义了多根轴线的对齐方式。如果项目只有一根轴线,该属性不起作用。
  • align-content: flex-start | flex-end | center | space-between | space-around | stretch;

子容器属性:

  • order
  • flex-grow
  • flex-shrink
  • flex-basis
  • flex
  • align-self

1. order属性

  • order属性定义项目的排列顺序。数值越小,排列越靠前,默认为0。
  • order: ;

2. flex-grow属性

  • flex-grow属性定义项目的放大比例,默认为0,即如果存在剩余空间,也不放大。
  • flex-grow: ; /* default 0 */

3. flex-shrink属性

  • flex-shrink属性定义了项目的缩小比例,默认为1,即如果空间不足,该项目将缩小。
  • flex-shrink: ; /* default 1 */

4. flex-basis属性

  • flex-basis属性定义了在分配多余空间之前,项目占据的主轴空间(main size)。浏览器根据这个属性,计算主轴是否有多余空间。它的默认值为auto,即项目的本来大小。
  • flex-basis: | auto; /* default auto */

5. flex属性

  • flex属性是flex-grow, flex-shrink 和 flex-basis的简写,默认值为0 1 auto。后两个属性可选。
  • flex: none | [ <'flex-grow'> <'flex-shrink'>? || <'flex-basis'> ]

6. align-self属性

  • align-self属性允许单个项目有与其他项目不一样的对齐方式,可覆盖align-items属性。默认值为auto,表示继承父元素的align-items属性,如果没有父元素,则等同于stretch。
  • align-self: auto | flex-start | flex-end | center | baseline | stretch;

1
2
3
4
5
6
7
8
9
11
11
12
13
14
15
       #wrap{
        width: 1100px;
        height: 500px;
      border: 1px #ccc solid;
      background-color: #eee;
      margin: 40px auto;

      display: flex;

      flex-direction: column;
      flex-direction: column-reverse;
      flex-direction: row;
      flex-direction: row-reverse;

      flex-wrap: nowrap | wrap | wrap-reverse;
       }
     .box{
        width: 100px;
        height: 100px;
        box-sizing:border-box;
        border: 1px purple solid;
        background-color:orange;
        color: #555;
        font-size: 20px;
        line-height: 100px;
        text-align: center;

     }
     .info{
        display: inline-flex;
     }

你可能感兴趣的:(CSS中Flexbox)