blob: 10d505b534980817a2210989c92b51081db0a5b6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
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>
|