--- title: flex-flow slug: Web/CSS/flex-flow tags: - flex-box translation_of: Web/CSS/flex-flow ---
{{CSSRef}}

A propriedade CSS flex-flow é uma junção das propriedades {{cssxref("flex-direction")}} e {{cssxref("flex-wrap")}}.

{{EmbedInteractiveExample("pages/css/flex-flow.html")}}

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 {{cssxref("flex-direction")}} e {{cssxref("flex-wrap")}} para ver os detalhes sobre os valores.

Sintaxe formal

{{csssyntax}}

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
{{ SpecName('CSS3 Flexbox','#flex-flow-property','flex-flow') }} {{ Spec2('CSS3 Flexbox') }} Definição inicial

{{cssinfo}}

Compatibilidade com navegadores

{{Compat("css.properties.flex-flow")}}

Veja também