diff options
author | julieng <julien.gattelier@gmail.com> | 2021-11-11 08:25:34 +0100 |
---|---|---|
committer | SphinxKnight <SphinxKnight@users.noreply.github.com> | 2021-11-11 09:10:36 +0100 |
commit | c391017c96c827a66e007d2eba6992a66b18b6b1 (patch) | |
tree | 15bbe0a1b8bd24ddf7b98cc9efc5a6983ccda32a /files/fr/web/mathml/element/mover/index.md | |
parent | df8a1303d253c5a257a375b432989246d601ce3f (diff) | |
download | translated-content-c391017c96c827a66e007d2eba6992a66b18b6b1.tar.gz translated-content-c391017c96c827a66e007d2eba6992a66b18b6b1.tar.bz2 translated-content-c391017c96c827a66e007d2eba6992a66b18b6b1.zip |
move *.html to *.md
Diffstat (limited to 'files/fr/web/mathml/element/mover/index.md')
-rw-r--r-- | files/fr/web/mathml/element/mover/index.md | 86 |
1 files changed, 86 insertions, 0 deletions
diff --git a/files/fr/web/mathml/element/mover/index.md b/files/fr/web/mathml/element/mover/index.md new file mode 100644 index 0000000000..38c8b1e838 --- /dev/null +++ b/files/fr/web/mathml/element/mover/index.md @@ -0,0 +1,86 @@ +--- +title: <mover> +slug: Web/MathML/Element/mover +translation_of: Web/MathML/Element/mover +--- +<p>{{MathMLRef()}}</p> +<p>L'élément MathML <code><mover></code> est utilisé pour attacher un accent ou une limite au-dessus d'une expression. La syntaxe est la suivante: <code><mover> <em>base overscript</em> </mover></code></p> +<h2 id="Attributs">Attributs</h2> +<dl> + <dt id="attr-accent"> + accent</dt> + <dd> + Lorsqu'il vaut <code>true</code> le script au-dessus est un <em>accent</em>, qui est affiché plus près de la base.<br> + Lorsqu'il vaut <code>false</code> (valeur par défaut) le script au-dessus est une <em>limite</em> au-dessus de la base.</dd> + <dt id="attr-align"> + align</dt> + <dd> + L'alignement du script au-dessus. 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 styles</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="mover.png"></p> +<p>Rendu dans votre navigateur : <math> <mover accent="true"> <mrow> <mi> x </mi> <mo> + </mo> <mi> y </mi> <mo> + </mo> <mi> z </mi> </mrow> <mo> ⏞ </mo> </mover> </math></p> +<pre class="brush: html"><math> + +<mover accent="true"> + <mrow> + <mi> x </mi> + <mo> + </mo> + <mi> y </mi> + <mo> + </mo> + <mi> z </mi> + </mrow> + <mo> &#x23DE; <!--TOP CURLY BRACKET--> </mo> +</mover> + +</math> +</pre> + +<h2 id="Specifications">Spécifications</h2> +<table class="standard-table"> + <thead> + <tr> + <th scope="col">Spécification</th> + <th scope="col">Statut</th> + <th scope="col">Commentaire</th> + </tr> + </thead> + <tbody> + <tr> + <td>{{ SpecName('MathML3', 'chapter3.html#presm.mover', 'mover') }}</td> + <td>{{ Spec2('MathML3') }}</td> + <td>Spécification courante</td> + </tr> + <tr> + <td>{{ SpecName('MathML2', 'chapter3.html#presm.mover', 'mover') }}</td> + <td>{{ Spec2('MathML2') }}</td> + <td>Spécification initiale</td> + </tr> + </tbody> +</table> + +<h2 id="Browser_compatibility">Compatibilité des navigateurs</h2> + +<p>{{Compat("mathml.elements.mover")}}</p> + +<h2 id="See_also">Voir aussi</h2> +<ul> + <li>{{ MathMLElement("munder") }} (Underscript)</li> + <li>{{ MathMLElement("munderover") }} (Underscript-overscript pair)</li> +</ul> |