From c391017c96c827a66e007d2eba6992a66b18b6b1 Mon Sep 17 00:00:00 2001 From: julieng Date: Thu, 11 Nov 2021 08:25:34 +0100 Subject: move *.html to *.md --- files/fr/web/mathml/element/munder/index.md | 88 +++++++++++++++++++++++++++++ 1 file changed, 88 insertions(+) create mode 100644 files/fr/web/mathml/element/munder/index.md (limited to 'files/fr/web/mathml/element/munder/index.md') 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: +slug: Web/MathML/Element/munder +translation_of: Web/MathML/Element/munder +--- +

{{MathMLRef()}}

+

L'élément MathML <munder> est utilisé pour attacher un accent ou une limite sous une expression. La syntaxe est la suivante: <munder> base script-en-dessous </munder>

+

Attributs

+
+
+ accentunder
+
+ Lorsqu'il a pour valeur true, l'élément est un accent, qui est affiché plus près de la base.
+ Lorsqu'il a pour valeur false (valeur par défaut), l'élément est une limite sous la base.
+
+ align
+
+ l'alignement du script en dessous. Les valeurs possibles sont: left, center, et right.
+
+ class, id, style
+
+ Afin d'être utilisés avec les feuilles de style.
+
+ href
+
+ Un hyperlien pointant vers un URI donné.
+
+ mathbackground
+
+ La couleur de fond. Il est possible d'utiliser les codes au format #rgb, #rrggbb et les noms de couleurs HTML.
+
+ mathcolor
+
+ La couleur du texte. Il est possible d'utiliser les codes au format #rgb, #rrggbb et les noms de couleurs HTML.
+
+

Exemples

+

Exemple de rendu: x+y+z

+

Rendu dans votre navigateur: x + y + z

+
<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>
+
+ +

Spécifications

+ + + + + + + + + + + + + + + + + + + + + +
SpecificationStatusComment
{{ SpecName('MathML3', 'chapter3.html#presm.munder', 'munder') }}{{ Spec2('MathML3') }}Current specification
{{ SpecName('MathML2', 'chapter3.html#presm.munder', 'munder') }}{{ Spec2('MathML2') }}Initial specification
+ +

Compatibilité des navigateurs

+ +

{{Compat("mathml.elements.munder")}}

+ +

Voir aussi

+ + -- cgit v1.2.3-54-g00ecf