diff options
Diffstat (limited to 'files/fr/web/mathml/element/munder/index.md')
-rw-r--r-- | files/fr/web/mathml/element/munder/index.md | 88 |
1 files changed, 88 insertions, 0 deletions
diff --git a/files/fr/web/mathml/element/munder/index.md b/files/fr/web/mathml/element/munder/index.md new file mode 100644 index 0000000000..d251bcfa16 --- /dev/null +++ b/files/fr/web/mathml/element/munder/index.md @@ -0,0 +1,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="/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="/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="munder.png"></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> |