diff options
author | Florian Merz <me@fiji-flo.de> | 2021-03-08 22:37:08 +0100 |
---|---|---|
committer | Florian Merz <me@fiji-flo.de> | 2021-03-08 22:37:08 +0100 |
commit | 59f1389c6023be8ec1435f8f7e55d7de5a302b5b (patch) | |
tree | 07bb735b7c0e522627185912020e74bdccd2bd38 /files/fr/orphaned/web/mathml/element/mglyph | |
parent | e3d7a4ae7d79c409bbe2db23c9b0acc2f01718d4 (diff) | |
download | translated-content-59f1389c6023be8ec1435f8f7e55d7de5a302b5b.tar.gz translated-content-59f1389c6023be8ec1435f8f7e55d7de5a302b5b.tar.bz2 translated-content-59f1389c6023be8ec1435f8f7e55d7de5a302b5b.zip |
sync translated content
Diffstat (limited to 'files/fr/orphaned/web/mathml/element/mglyph')
-rw-r--r-- | files/fr/orphaned/web/mathml/element/mglyph/index.html | 71 |
1 files changed, 71 insertions, 0 deletions
diff --git a/files/fr/orphaned/web/mathml/element/mglyph/index.html b/files/fr/orphaned/web/mathml/element/mglyph/index.html new file mode 100644 index 0000000000..b4785ad676 --- /dev/null +++ b/files/fr/orphaned/web/mathml/element/mglyph/index.html @@ -0,0 +1,71 @@ +--- +title: <mglyph> +slug: orphaned/Web/MathML/Element/mglyph +tags: + - Element + - MathML + - Reference +translation_of: Web/MathML/Element/mglyph +original_slug: Web/MathML/Element/mglyph +--- +<div>{{MathMLRef}}</div> + +<p>L'élément MathML <strong><code><mglyph></code></strong> est utilisé afin d'afficher des symboles non-standards n'ayant pas de caractères Unicode correspondants. Cet élément peut être utilisé avec les <a href="/fr/docs/tag/MathML:Token%20Elements">éléments jetons</a>.</p> + +<h2 id="Attributs">Attributs</h2> + +<dl> + <dt id="attr-alt"><code>alt</code></dt> + <dd>Cet attribut définit le texte alternatif décrivant l'image. Ce texte sera affiché si l'URL est incorrecte, si <a href="/fr/docs/Web/HTML/Element/Img#Formats_d%27image_support.C3.A9s" title="/fr/docs/Web/HTML/Element/Img#Formats_d%27image_support.C3.A9s">le format de l'image n'est pas supporté</a> ou jusqu'à la fin du téléchargement de l'image.</dd> + <dt id="attr-class-id-style"><code>class</code>, <code>id</code>, <code>style</code></dt> + <dd>Afin d'être utilisés avec les <a href="/fr/docs/CSS">feuilles de styles</a>.</dd> + <dt id="attr-height"><code>height</code></dt> + <dd>La hauteur de l'image.</dd> + <dt id="attr-href"><code>href</code></dt> + <dd>Un hyperlien pointant vers un URI donné.</dd> + <dt id="attr-mathbackground"><code>mathbackground</code></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-src"><code>src</code></dt> + <dd>L'URL de l'image.</dd> + <dt id="attr-valign"><code>valign</code></dt> + <dd>Définit l'alignement vertical par rapport à la ligne de base courante.</dd> + <dt id="attr-width"><code>width</code></dt> + <dd>La largeur de l'image.</dd> +</dl> + +<h2 id="Exemples">Exemples</h2> + +<pre class="brush: html"><math> + <mi><mglyph src="mon-glyphe.png" alt="mon glyphe"/></mi> +</math> +</pre> + +<h2 id="Spécifications">Spécifications</h2> + +<table class="standard-table"> + <thead> + <tr> + <th scope="col">Spécification</th> + <th scope="col">Statut</th> + <th scope="col">Commentaires</th> + </tr> + </thead> + <tbody> + <tr> + <td>{{ SpecName('MathML3', 'chapter3.html#presm.mglyph', 'mglyph') }}</td> + <td>{{ Spec2('MathML3') }}</td> + <td>Spécification actuelle</td> + </tr> + <tr> + <td>{{ SpecName('MathML2', 'chapter3.html#presm.mglyph', 'mglyph') }}</td> + <td>{{ Spec2('MathML2') }}</td> + <td>Spécification initiale</td> + </tr> + </tbody> +</table> + +<h2 id="Compatibilité_des_navigateurs">Compatibilité des navigateurs</h2> + +<div class="hidden">Le tableau de compatibilité de cette page a été généré à partir de données structurées. Si vous souhaitez contribuer à ces données, n'hésitez pas à consulter <a href="https://github.com/mdn/browser-compat-data">https://github.com/mdn/browser-compat-data</a> et à nous envoyer une <em>pull request</em>.</div> + +<p>{{Compat("mathml.elements.mglyph")}}</p> |