From 33058f2b292b3a581333bdfb21b8f671898c5060 Mon Sep 17 00:00:00 2001 From: Peter Bengtsson Date: Tue, 8 Dec 2020 14:40:17 -0500 Subject: initial commit --- files/fr/web/css/flex-flow/index.html | 98 +++++++++++++++++++++++++++++++++++ 1 file changed, 98 insertions(+) create mode 100644 files/fr/web/css/flex-flow/index.html (limited to 'files/fr/web/css/flex-flow/index.html') diff --git a/files/fr/web/css/flex-flow/index.html b/files/fr/web/css/flex-flow/index.html new file mode 100644 index 0000000000..f83f7d8f3c --- /dev/null +++ b/files/fr/web/css/flex-flow/index.html @@ -0,0 +1,98 @@ +--- +title: flex-flow +slug: Web/CSS/flex-flow +tags: + - CSS + - Propriété + - Reference +translation_of: Web/CSS/flex-flow +--- +
{{ CSSRef}}
+ +

La propriété CSS flex-flow est une propriété raccourcie pour les propriétés {{cssxref("flex-direction")}} et {{cssxref("flex-wrap")}}.

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

Pour plus d'informations, voir la page Utiliser les boîtes flexibles (flexbox) CSS.

+ +

Syntaxe

+ +
/* 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'> et <'flex-wrap'> */
+flex-flow: row nowrap;
+flex-flow: column wrap;
+flex-flow: column-reverse wrap-reverse;
+
+/* Valeurs globales */
+flex-flow: inherit;
+flex-flow: initial;
+flex-flow: unset;
+
+ +

Valeurs

+ +

Voir {{cssxref("flex-direction")}} et {{cssxref("flex-wrap")}} pour plus d'informations sur les valeurs que peuvent prendre ces deux propriétés.

+ +

Syntaxe formelle

+ +
{{csssyntax}}
+ +

Exemples

+ +
element {
+
+  /* L'axe principal sera la direction de bloc  */
+  /* et on commencera par le bas (main-start et */
+  /* main-end inversés. Les éléments flexibles  */
+  /* passent sur une nouvelle ligne si besoin   */
+
+  flex-flow: column-reverse wrap;
+
+}
+
+ +

Spécifications

+ + + + + + + + + + + + + + + + +
SpécificationÉtatCommentaires
{{SpecName('CSS3 Flexbox','#flex-flow-property','flex-flow')}}{{Spec2('CSS3 Flexbox')}}Définition initiale.
+ +

{{cssinfo}}

+ +

Compatibilité des navigateurs

+ + + +

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

+ +

Voir aussi

+ + -- cgit v1.2.3-54-g00ecf