flex-flow
A propriedade CSS flex-flow
é uma junção das propriedades flex-direction
e flex-wrap
.
Experimente
Sintaxe
/* flex-flow: <'flex-direction'> */
flex-flow: row;
flex-flow: row-reverse;
flex-flow: column;
flex-flow: column-reverse;
/* flex-flow: <'flex-wrap'> */
flex-flow: nowrap;
flex-flow: wrap;
flex-flow: wrap-reverse;
/* flex-flow: <'flex-direction'> and <'flex-wrap'> */
flex-flow: row nowrap;
flex-flow: column wrap;
flex-flow: column-reverse wrap-reverse;
/* Global values */
flex-flow: inherit;
flex-flow: initial;
flex-flow: unset;
Valores
Consulte flex-direction
e flex-wrap
para ver os detalhes sobre os valores.
Sintaxe formal
flex-flow =
<'flex-direction'> ||
<'flex-wrap'>
Exemplos
elemento {
/* O eixo principal é a direção do bloco com main-start e main-end invertidos.
* Os itens flex estão dispostos em múltiplas linhas */
flex-flow: column-reverse wrap;
}
Especificações
Especificação | Status | Comentário |
---|---|---|
CSS Flexible Box Layout Module The definition of 'flex-flow' in that specification. |
Candidata a Recomendação | Definição inicial |
Initial value | as each of the properties of the shorthand:
|
---|---|
Aplica-se a | flex containers |
Inherited | não |
Computed value | as each of the properties of the shorthand:
|
Animation type | as each of the properties of the shorthand:
|
Compatibilidade com navegadores
BCD tables only load in the browser
Veja também
- Guia de Flexbox CSS: Conceitos básicos de flexbox
- Guia de Flexbox CSS: Ordenando itens flex