diff options
author | julieng <julien.gattelier@gmail.com> | 2021-09-17 20:59:20 +0200 |
---|---|---|
committer | SphinxKnight <SphinxKnight@users.noreply.github.com> | 2021-10-12 07:57:33 +0200 |
commit | 258ba7b4be62d8640477a3bd3146d08b00cb70ec (patch) | |
tree | a8476eee4c369ff47bdfe08353774414f2281ba3 /files/fr/web/css/math-style | |
parent | 149319bb8c7b1394a443f0877c3460cd362aa815 (diff) | |
download | translated-content-258ba7b4be62d8640477a3bd3146d08b00cb70ec.tar.gz translated-content-258ba7b4be62d8640477a3bd3146d08b00cb70ec.tar.bz2 translated-content-258ba7b4be62d8640477a3bd3146d08b00cb70ec.zip |
convert content to md
Diffstat (limited to 'files/fr/web/css/math-style')
-rw-r--r-- | files/fr/web/css/math-style/index.md | 52 |
1 files changed, 25 insertions, 27 deletions
diff --git a/files/fr/web/css/math-style/index.md b/files/fr/web/css/math-style/index.md index 10d505b534..c76e488be1 100644 --- a/files/fr/web/css/math-style/index.md +++ b/files/fr/web/css/math-style/index.md @@ -1,16 +1,17 @@ --- title: math-style slug: Web/CSS/math-style +translation_of: Web/CSS/math-style browser-compat: css.properties.math-style -translation_of: 'Web/CSS/math-style' --- -<p>{{MDNSidebar}}</p> +{{MDNSidebar}} -<p>La propriété <code>math-style</code> détermine si les équations MathML devraient être affichées en hauteur normale ou compacte.</p> +La propriété `math-style` détermine si les équations MathML devraient être affichées en hauteur normale ou compacte. -<h2 id="syntax">Syntaxe</h2> +## Syntaxe -<pre class="brush: css">/* Valeurs avec un mot-clé */ +```css +/* Valeurs avec un mot-clé */ math-style: normal; math-style: compact; @@ -19,38 +20,35 @@ math-sytle: inherit; math-style: initial; math-style: revert; math-style: unset; -</pre> +``` -<h3 id="values">Valeurs</h3> +### Valeurs -<dl> - <dt><code>normal</code></dt> - <dd>La valeur initiale, indiquant un rendu normal.</dd> - <dt><code>compact</code></dt> - <dd>La mise en page des éléments de l'équation est faite de manière à réduire la hauteur de l'ensemble.</dd> -</dl> +- `normal` + - : La valeur initiale, indiquant un rendu normal. +- `compact` + - : La mise en page des éléments de l'équation est faite de manière à réduire la hauteur de l'ensemble. -<h2 id="formal_definition">Définition formelle</h2> +## Définition formelle -<p>{{cssinfo}}</p> +{{cssinfo}} -<h2 id="formal_syntax">Syntaxe formelle</h2> +## Syntaxe formelle -<p>{{CSSSyntax}}</p> +{{CSSSyntax}} -<h2 id="examples">Exemple</h2> +## Exemple -<h3 id="css">CSS</h3> +### CSS -<pre><em>math { - math-style: compact; -}</em> -</pre> + math { + math-style: compact; + } -<h2 id="specifications">Spécifications</h2> +## Spécifications -<p>{{Specifications}}</p> +{{Specifications}} -<h2 id="browser_compatibility">Compatibilité des navigateurs</h2> +## Compatibilité des navigateurs -<p>{{Compat}}</p> +{{Compat}} |