--- title: flex-flow slug: Web/CSS/flex-flow tags: - CSS - CSS Flexible Boxes - Propiedad CSS - Referencia translation_of: Web/CSS/flex-flow ---
{{ CSSRef}}

Resumen

La propiedad CSS flex-flow  es una propiedad atajo para las propiedades individuales flex-direction y flex-wrap.

{{cssinfo}}

Para más propiedades e información ve Utilizando cajas flexibles CSS.

Sintaxis

/* 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;

/* valores globales */
flex-flow: inherit;
flex-flow: initial;
flex-flow: unset;

Valores

Ve flex-direction y flex-wrap para más detalles de los valores.

Sintaxis formal

{{csssyntax}}

Ejemplos

element {
  /* Main-axis es la dirección de bloque con main-start y main-end opuesto. Los artículos flex se distribuyen en múltiples líneas */
  flex-flow: column-reverse wrap;
}

Especificaciones

Especificación Estado Comentario
{{ SpecName('CSS3 Flexbox','#flex-flow','flex-flow') }} {{ Spec2('CSS3 Flexbox') }} Definición inicial

Compatibilidad de navegador

{{ CompatibilityTable() }}

Característica Firefox (Gecko) Chrome Internet Explorer Opera Safari
Soporte básico 28.0 21.0{{property_prefix("-webkit")}}
29.0
11 12.10 6.1{{ property_prefix("-webkit") }}
Característica Firefox Mobile (Gecko) Android IE Phone Opera Mobile Safari Mobile
Soporte básico 28.0 {{ CompatUnknown() }} 11 12.10 7.1{{ property_prefix("-webkit") }}

Ver también