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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
|
---
title: <munder>
slug: Web/MathML/Element/munder
translation_of: Web/MathML/Element/munder
---
<p>{{MathMLRef()}}</p>
<p>L'élément MathML <code><munder></code> est utilisé pour attacher un accent ou une limite sous une expression. La syntaxe est la suivante: <code><munder> <em>base script-en-dessous</em> </munder></code></p>
<h2 id="Attributs">Attributs</h2>
<dl>
<dt id="attr-accentunder">
accentunder</dt>
<dd>
Lorsqu'il a pour valeur <code>true</code>, l'élément est un <em>accent</em>, qui est affiché plus près de la base.<br>
Lorsqu'il a pour valeur <code>false</code> (valeur par défaut), l'élément est une <em>limite</em> sous la base.</dd>
<dt id="attr-align">
align</dt>
<dd>
l'alignement du script en dessous. Les valeurs possibles sont: <code>left</code>, <code>center</code>, et <code>right</code>.</dd>
<dt id="attr-class-id-style">
class, id, style</dt>
<dd>
Afin d'être utilisés avec les <a href="/fr/docs/CSS">feuilles de style</a>.</dd>
<dt id="attr-href">
href</dt>
<dd>
Un hyperlien pointant vers un URI donné.</dd>
<dt id="attr-mathbackground">
mathbackground</dt>
<dd>
La couleur de fond. Il est possible d'utiliser les codes au format <code>#rgb</code>, <code>#rrggbb</code> et les <a href="https://developer.mozilla.org/fr/docs/CSS/valeur_de_couleur#Mots-cl.C3.A9s">noms de couleurs HTML</a>.</dd>
<dt id="attr-mathcolor">
mathcolor</dt>
<dd>
La couleur du texte. Il est possible d'utiliser les codes au format <code>#rgb</code>, <code>#rrggbb</code> et les <a href="https://developer.mozilla.org/fr/docs/CSS/valeur_de_couleur#Mots-cl.C3.A9s">noms de couleurs HTML</a>.</dd>
</dl>
<h2 id="Exemples">Exemples</h2>
<p>Exemple de rendu: <img alt="x+y+z" src="/files/3197/munder.png" style="vertical-align: middle; margin-left: 10px;"></p>
<p>Rendu dans votre navigateur: <math> <munder accentunder="true"> <mrow> <mi> x </mi> <mo> + </mo> <mi> y </mi> <mo> + </mo> <mi> z </mi> </mrow> <mo> ⏟ </mo> </munder> </math></p>
<pre class="brush: html"><math>
<munder accentunder="true">
<mrow>
<mi> x </mi>
<mo> + </mo>
<mi> y </mi>
<mo> + </mo>
<mi> z </mi>
</mrow>
<mo> &#x23DF; <!--BOTTOM CURLY BRACKET--> </mo>
</munder>
</math>
</pre>
<h2 id="Specifications">Spécifications</h2>
<table class="standard-table">
<thead>
<tr>
<th scope="col">Specification</th>
<th scope="col">Status</th>
<th scope="col">Comment</th>
</tr>
</thead>
<tbody>
<tr>
<td>{{ SpecName('MathML3', 'chapter3.html#presm.munder', 'munder') }}</td>
<td>{{ Spec2('MathML3') }}</td>
<td>Current specification</td>
</tr>
<tr>
<td>{{ SpecName('MathML2', 'chapter3.html#presm.munder', 'munder') }}</td>
<td>{{ Spec2('MathML2') }}</td>
<td>Initial specification</td>
</tr>
</tbody>
</table>
<h2 id="Browser_compatibility">Compatibilité des navigateurs</h2>
<p>{{Compat("mathml.elements.munder")}}</p>
<h2 id="See_also">Voir aussi</h2>
<ul>
<li>{{ MathMLElement("mover") }} (Overscript)</li>
<li>{{ MathMLElement("munderover") }} (Underscript-overscript pair)</li>
</ul>
|