CSS flex-flow 属性

CSS 参考手册 CSS 参考手册


让弹性盒的元素以相反的顺序显示,且在必要的时候进行拆行:

<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <style>
    #main {
      width: 200px;
      height: 200px;
      border: 1px solid #c3c3c3;
      display: -webkit-flex;
      /* Safari */
      -webkit-flex-flow: row-reverse wrap;
      /* Safari 6.1+ */
      display: flex;
      flex-flow: row-reverse wrap;
    }

    #main div {
      width: 50px;
      height: 50px;
    }
  </style>
</head>
<body>

  <div id="main">
    <div style="background-color:coral;">A</div>
    <div style="background-color:lightblue;">B</div>
    <div style="background-color:khaki;">C</div>
    <div style="background-color:pink;">D</div>
    <div style="background-color:lightgrey;">E</div>
    <div style="background-color:lightgreen;">F</div>
  </div>

  <p><b>注意:</b> Internet Explorer 10 及更早版本浏览器不支持 flex-flow 属性。</p>
  <p><b>注意:</b> Safari 6.1 及更新版本通过 -webkit-flex-flow 属性支持该属性。</p>

</body>
</html>

尝试一下 »


浏览器支持

表格中的数字表示支持该属性的第一个浏览器的版本号。

紧跟在 -webkit-, -ms- 或 -moz- 后的数字为支持该前缀属性的第一个版本。

属性
flex-flow 29.0
21.0 -webkit-
11.0
10.0 -ms-
28.0
18.0 -moz-
9.0
6.1 -webkit-
17.0

定义和用法

flex-flow 属性是 flex-direction 和 flex-wrap 属性的复合属性。

flex-flow 属性用于设置或检索弹性盒模型对象的子元素排列方式。

flex-direction 属性规定灵活项目的方向。

flex-wrap 属性规定灵活项目是否拆行或拆列。

注意:如果元素不是弹性盒对象的元素,则 flex-flow 属性不起作用。

<!DOCTYPE html>
<html>
<head>
  <style>
    #main {
      width: 200px;
      height: 150px;
      border: 1px solid #c3c3c3;
      display: flex;
      flex-flow: row wrap;
    }

    #main div {
      width: 50px;
      height: 50px;
    }
  </style>
</head>
<body>

  <div id="main">
    <div style="background-color:coral;">A</div>
    <div style="background-color:lightblue;">B</div>
    <div style="background-color:khaki;">C</div>
    <div style="background-color:pink;">D</div>
    <div style="background-color:lightgrey;">E</div>
    <div style="background-color:lightgreen;">F</div>
  </div>

  <p>点击“尝试一下”按钮设置 flexFlow 属性的值为 "column nowrap"。</p>

  <button onclick="myFunction()">尝试一下</button>

  <script>
    function myFunction() {
      document.getElementById("main").style.flexFlow = "column nowrap";
    }
  </script>

  <p><b>注意:</b>Internet Explorer 和 Safari 不支持 flexFlow 属性。</p>

</body>
</html>

尝试一下 »

默认值: row nowrap
继承:
可动画化: 否。请参阅 可动画化(animatable)
版本: CSS3
JavaScript 语法: object.style.flexFlow="column nowrap" - 尝试一下 -

CSS 语法

flex-flow: flex-direction flex-wrap|initial|inherit;

属性值

描述
flex-direction 可能的值:

row
row-reverse
column
column-reverse
initial
inherit

默认值是 "row"。

规定灵活项目的方向。

flex-wrap 可能的值:

nowrap
wrap
wrap-reverse
initial
inherit

默认值是 "nowrap"。

规定灵活项目是否拆行或拆列。

initial 设置该属性为它的默认值。请参阅 initial
inherit 从父元素继承该属性。请参阅 inherit

相关文章

CSS 参考手册:flex 属性

CSS 参考手册:flex-basis 属性

CSS 参考手册:flex-direction 属性

CSS 参考手册:flex-grow 属性

CSS 参考手册:flex-shrink 属性

CSS 参考手册:flex-wrap 属性


CSS 参考手册 CSS 参考手册