flex-flow 属性是弹性盒布局模块的子属性,也是 flex-wrap 和 flex-direction 的简写属性。
注意:当元素不是柔性项目时, flex 属性是无用的。
句法:
flex-flow: flex-direction flex-wrap;
flex-flow 属性的值:
- row nowrap:按文本方向排列行,wrap-flex 的默认值为 nowrap。它用于指定项目没有包装。它使项目包装在单行中。
句法:
flex-flow: row nowrap;
例子:
flex-flow property GeeksforGeeks
The flex-flow:row nowrap
123456