Blogger Information
Blog 16
fans 0
comment 0
visits 6161
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
flex容器与项目必知的6个属性
glen
Original
516 people have browsed it

flex容器

  1. flex容器默认有两个轴:
  2. 水平主轴(main axis)和垂直交叉轴(cross axis)。
  3. flex 布局(弹性盒子)
  4. flex容器默认有两个轴:
  5. 主轴:水平排列
  6. flex 项目为容器里面的项目(每个项目一定为 flex 容器的子元素.) ,项目是沿着主轴进行排列;
  7. 交叉轴:垂直排列
  8. 当项目在每个项目在当前的主轴的垂直方向上还有空间的话,可以根据叫交叉轴在进行垂直排列
  9. display: flex 将当前元素类型转化为弹性盒子,此标签下的子元素自动变成弹性项目;

设置主轴方向的排列:

flex-direction:设定主轴为水平还是垂直
flex-direction:row: 水平(默认值)
flex-direction:column:垂直(主轴设为垂直)
flex-wrap:(设置盒子内部在页面缩小时项目空间不够时,是否换行)
flex-wrap:nowrap 设为不允许换行(此为默认值)
flex-wrap:wrap 设置为允许换行

  1. /* 第一种分配方案:将所以项目看成一个整体,将剩余空间在所以项目两边进行分配 */
  2. place-content: start;/* 将所有剩余空间全部放到右边,也就是将所有项目从左边开始排列 */
  3. place-content: end;/* 将所有剩余空间全部放到左边,也就是将所有项目从右边开始排列 */
  4. /* 将所有剩余空间在所有项目左右两边平均分配 */
  5. place-content: center;
  1. /* 第二种分配方案:将所有项目看成一个独立的个体,将所有剩余空间在所有项目之间进行分配 */
  2. /* 两端对齐: */place-content: space-between;
  3. /* 分散对齐: */place-content: space-around;
  4. /* 平均对齐: */place-content: space-evenly;
  1. /* 第三个属性:place-items 项目在交叉轴上对齐 */
  2. place-items: stretch;

  1. /* 上对齐: */
  2. place-items: start;

  1. /* 下对齐: */
  2. place-itemsend

  1. 总结:
  2. flex-flow: 主轴,换行
  3. place-content: 剩余空间的分配/项目在主轴上的排列与项目的分配
  4. place-items: 项目在交叉轴上的对齐方案;
flex项目必知的6个属性:
  1. flex: 0 1 auto;放大因子 收缩因子 计算宽度
  2. flex: 0 1 auto 代表禁止放大 可以缩小 宽度自动(用当前项目的宽度,如当前未设置宽度,项目会自动收缩) `.
  3. flex: 0 1 10em此时的项目宽度为 160px(无论此项目设不设 width 值)
  4. max-width的值 > flex: 0 1 160px > width值
  5. 优先级是 max-width 最大 flex 其次 width 最小
  6. flex: 1 1 auto(flex:auto) 响应式 即可放大又可缩小
  7. flex: 0 0 auto(flex:none) 不可放大也不可缩小 (移动端布局用的多)
  8. flex:1; (-flex: 1 1 auto)
  1. /* 改动项目的顺序:order
  2. order:0默认值
  3. order可以改变项目在主轴上的排列顺序,值越小越靠前,支持负数 */
  4. .container > .item:first-of-type{
  5. background-color: lightcoral;
  6. order: 2;
  7. }
  8. .container > .item:last-of-type{
  9. background-color: lightgreen;
  10. order: -1;
  11. }

Correcting teacher:PHPzPHPz

Correction status:qualified

Teacher's comments:
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments