From 149319bb8c7b1394a443f0877c3460cd362aa815 Mon Sep 17 00:00:00 2001 From: julieng Date: Fri, 17 Sep 2021 20:58:15 +0200 Subject: move *.html to *.md --- files/fr/web/css/flex-flow/index.html | 94 ----------------------------------- 1 file changed, 94 deletions(-) delete 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 deleted file mode 100644 index f6fd1b2c4b..0000000000 --- a/files/fr/web/css/flex-flow/index.html +++ /dev/null @@ -1,94 +0,0 @@ ---- -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