diff options
Diffstat (limited to 'files/pt-pt/web/mathml/element/munderover/index.html')
-rw-r--r-- | files/pt-pt/web/mathml/element/munderover/index.html | 91 |
1 files changed, 91 insertions, 0 deletions
diff --git a/files/pt-pt/web/mathml/element/munderover/index.html b/files/pt-pt/web/mathml/element/munderover/index.html new file mode 100644 index 0000000000..5f217a2766 --- /dev/null +++ b/files/pt-pt/web/mathml/element/munderover/index.html @@ -0,0 +1,91 @@ +--- +title: <munderover> +slug: Web/MathML/Element/munderover +tags: + - MathML + - 'MathML:Element' + - 'MathML:Script and Limit Schemata' + - Referência de MathML +translation_of: Web/MathML/Element/munderover +--- +<div>{{MathMLRef}}</div> + +<p><span class="seoSummary">O elemento de MathML <code><munderover></code> é usado para adicionar acentos ou limites acima e abaixo duma expressão.</span></p> + +<p>Usa a sintaxe seguinte: <code><munderover> <em>base underscript overscript</em> </munderover></code></p> + +<h2 id="Atributos">Atributos</h2> + +<dl> + <dt id="attr-accent">accent</dt> + <dd>Se <code>true</code>, o <em>overscript</em> é um acento, que então é desenhado mais perto da expressão base.<br> + Se <code>false</code> (valor pré-definido), o <em>overscript</em> é um limite acima da expressão base.</dd> + <dt id="attr-accentunder">accentunder</dt> + <dd>Se <code>true</code>, o <em>underscript</em> é um acento, que então é desenhado mais perto da expressão base.<br> + Se <code>false</code> (valor pré-definido), o <em>underscript</em> é um limite debaixo da expressão base.</dd> + <dt id="attr-align">align {{deprecated_inline}}</dt> + <dd>O alinhamento do <em>overscript</em> e <em>underscript</em>. Os valores possíveis são: <code>left</code>, <code>center</code>, and <code>right</code>.<br> + Este atributo está obsoleto e será removido no futuro. Use antes o atributo de CSS <code><a class="external external-icon" href="https://wiki.developer.mozilla.org/en-US/docs/Web/CSS/text-align" rel="noopener">text-align</a></code>.</dd> + <dt id="attr-class-id-style">class, id, style</dt> + <dd>Para uso com <em><a href="/en-US/docs/CSS">stylesheets</a></em>.</dd> + <dt id="attr-href">href</dt> + <dd>Usado para criar uma hiperligação para um URI.</dd> + <dt id="attr-mathbackground">mathbackground</dt> + <dd>A cor de fundo. Pode usar <code>#rgb</code>, <code>#rrggbb</code> e <a class="external external-icon" href="https://wiki.developer.mozilla.org/en-US/docs/CSS/color_value#Color_Keywords" rel="noopener">nomes de cores de HTML</a>.</dd> + <dt id="attr-mathcolor">mathcolor</dt> + <dd>A cor do texto. Pode usar <code>#rgb</code>, <code>#rrggbb</code> e <a class="external external-icon" href="https://wiki.developer.mozilla.org/en-US/docs/CSS/color_value#Color_Keywords" rel="noopener">nomes de cores HTML</a>.</dd> +</dl> + +<h2 id="Exemplos">Exemplos</h2> + +<p>Exemplo: <img alt="integral-0-infinity" src="/files/3198/munderover.png" style="margin-left: 10px; vertical-align: middle;"></p> + +<p>Exemplo renderizado no seu navegador: <math displaystyle="true"> <munderover> <mo> ∫ </mo> <mn> 0 </mn> <mi> ∞ </mi> </munderover> </math></p> + +<pre class="brush: html notranslate"><math displaystyle="true"> + + <munderover > + <mo> &#x222B; <!--INTEGRAL--> </mo> + <mn> 0 </mn> + <mi> &#x221E; <!--INFINITY--> </mi> + </munderover> + +</math> +</pre> + +<h2 id="Especificações">Especificações</h2> + +<table class="standard-table"> + <thead> + <tr> + <th scope="col">Espicifcação</th> + <th scope="col">Estado</th> + <th scope="col">Comentário</th> + </tr> + </thead> + <tbody> + <tr> + <td>{{ SpecName('MathML3', 'chapter3.html#presm.munderover', 'munderover') }}</td> + <td>{{ Spec2('MathML3') }}</td> + <td>Especificação atual</td> + </tr> + <tr> + <td>{{ SpecName('MathML2', 'chapter3.html#presm.munderover', 'munderover') }}</td> + <td>{{ Spec2('MathML2') }}</td> + <td>Especificação inicial</td> + </tr> + </tbody> +</table> + +<h2 id="Compatibilidade">Compatibilidade</h2> + + + +<p>{{Compat("mathml.elements.munderover")}}</p> + +<h2 id="Ver_também">Ver também</h2> + +<ul> + <li>{{ MathMLElement("munder") }} (<em>Underscript</em>)</li> + <li>{{ MathMLElement("mover") }} (<em>Overscript</em>)</li> +</ul> |