aboutsummaryrefslogtreecommitdiff
path: root/files/fr/web
diff options
context:
space:
mode:
authorJb Audras <audrasjb@gmail.com>2021-07-28 08:24:54 +0200
committerGitHub <noreply@github.com>2021-07-28 08:24:54 +0200
commitfc88b7ba78952c02c7b9f24eb3b9e6c9fceed9fb (patch)
tree2a173814aeaa74d1859fcd340e036acef84ae9f3 /files/fr/web
parent6237d0950eaf8462e9a6ea07fabb047ed7976ecd (diff)
downloadtranslated-content-fc88b7ba78952c02c7b9f24eb3b9e6c9fceed9fb.tar.gz
translated-content-fc88b7ba78952c02c7b9f24eb3b9e6c9fceed9fb.tar.bz2
translated-content-fc88b7ba78952c02c7b9f24eb3b9e6c9fceed9fb.zip
Original translation (#1749)
Diffstat (limited to 'files/fr/web')
-rw-r--r--files/fr/web/css/math-style/index.html56
1 files changed, 56 insertions, 0 deletions
diff --git a/files/fr/web/css/math-style/index.html b/files/fr/web/css/math-style/index.html
new file mode 100644
index 0000000000..10d505b534
--- /dev/null
+++ b/files/fr/web/css/math-style/index.html
@@ -0,0 +1,56 @@
+---
+title: math-style
+slug: Web/CSS/math-style
+browser-compat: css.properties.math-style
+translation_of: 'Web/CSS/math-style'
+---
+<p>{{MDNSidebar}}</p>
+
+<p>La propriété <code>math-style</code> détermine si les équations MathML devraient être affichées en hauteur normale ou compacte.</p>
+
+<h2 id="syntax">Syntaxe</h2>
+
+<pre class="brush: css">/* Valeurs avec un mot-clé */
+math-style: normal;
+math-style: compact;
+
+/* Valeurs globales */
+math-sytle: inherit;
+math-style: initial;
+math-style: revert;
+math-style: unset;
+</pre>
+
+<h3 id="values">Valeurs</h3>
+
+<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>
+
+<h2 id="formal_definition">Définition formelle</h2>
+
+<p>{{cssinfo}}</p>
+
+<h2 id="formal_syntax">Syntaxe formelle</h2>
+
+<p>{{CSSSyntax}}</p>
+
+<h2 id="examples">Exemple</h2>
+
+<h3 id="css">CSS</h3>
+
+<pre><em>math {
+ math-style: compact;
+}</em>
+</pre>
+
+<h2 id="specifications">Spécifications</h2>
+
+<p>{{Specifications}}</p>
+
+<h2 id="browser_compatibility">Compatibilité des navigateurs</h2>
+
+<p>{{Compat}}</p>