美文网首页
css布局学习--flex布局

css布局学习--flex布局

作者: 柠檬家的芒果果 | 来源:发表于2019-08-05 16:22 被阅读0次

    flex布局

    项目概念及例子摘自阮一峰Flex 布局教程

    • flex分为容器(flex container)和容器项(flex item)


      flex布局

    容器的属性

    六个属性值
    - flex-direction
    - flex-wrap
    - flex-flow
    - justify-content
    - align-items
    - align-content

    flex-direction:主轴方向

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

    flex-wrap:如果一条轴线排不下,如何换行

    .box{
      flex-wrap: nowrap | wrap | wrap-reverse;
    }
    nowrap(默认):不换行。
    wrap:换行,第一行在上方。
    wrap-reverse:换行,第一行在下方。
    
    nowrap不换行
    wrap第一行在上方
    wrap-reverse第一行在下方

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

    .box {
      flex-flow: <flex-direction> || <flex-wrap>;
    }
    

    justify-content:项目在主轴上的对齐方式

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

    align-items:项目在交叉轴上如何对齐。

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

    align-content:定义了多根轴线的对齐方式。如果项目只有一根轴线,该属性不起作用

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

    项目属性

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

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

    .item {
      order: <integer>;
    }
    

    flex-grow:定义项目放大比例,默认为0,即如果存在剩余空间,也不放大

    .item {
      flex-grow: <number>; /* default 0 */
    }
    如果所有项目的flex-grow属性都为1,则它们将等分剩余空间(如果有的话)。
    如果一个项目的flex-grow属性为2,其他项目都为1,则前者占据的剩余空间将比其他项多一倍。
    
    flex-grow属性

    flex-shrink 项目的缩小比例,默认为1,即如果空间不足,该项目将缩小。

    .item {
      flex-shrink: <number>; /* default 1 */
    }
    如果所有项目的flex-shrink属性都为1,当空间不足时,都将等比例缩小。
    如果一个项目的flex-shrink属性为0,其他项目都为1,则空间不足时,前者不缩小。
    
    负值对该属性无效。
    
    flex-shrink属性

    flex-basis 在分配多余空间之前,项目占据的主轴空间(main size)

    .item {
      flex-basis: <length> | auto; /* default auto */
    }
    它可以设为跟width或height属性一样的值(比如350px),则项目将占据固定空间。
    

    flex 是flex-grow, flex-shrink 和 flex-basis的简写,默认值为0 1 auto。后两个属性可选。

    .item {
      flex: none | [ <'flex-grow'> <'flex-shrink'>? || <'flex-basis'> ]
    }
    该属性有两个快捷值:auto (1 1 auto) 和 none (0 0 auto)。
    
    建议优先使用这个属性,而不是单独写三个分离的属性,因为浏览器会推算相关值。
    

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

    .item {
      align-self: auto | flex-start | flex-end | center | baseline | stretch;
    }
    

    案例

    利用flex布局实现三栏布局

    <div class="container flex-container">
          <div class="item-left">left</div>
          <div class="item-center">center</div>
          <div class="item-right">right</div>
    </div>
    
    .container{
        margin-top:20px;
        height: 400px;
        background-color: bisque;
        display: flex;
        flex-direction: row;
      }
      .item-left{
        width:200px;
        background-color: brown;
        height: 100%;
      }
      .item-center{
        /*min-width: 400px;*/
        width:100%;
        background-color: blueviolet;
        height: 100%;
        margin-left:20px;
        margin-right:20px;
      }
      .item-right{
        width: 200px;
        background-color: chartreuse;
        height: 100%;
      }
      .flex-container{
        text-align: center;
        vertical-align: middle;
        line-height: 400px;
      }
    
    flex实现三栏布局

    相关文章

      网友评论

          本文标题:css布局学习--flex布局

          本文链接:https://www.haomeiwen.com/subject/rlhmdctx.html