aboutsummaryrefslogtreecommitdiff
path: root/files/fr/web/css
diff options
context:
space:
mode:
Diffstat (limited to 'files/fr/web/css')
-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>