aboutsummaryrefslogtreecommitdiff
path: root/files/pt-pt/web/mathml/element/mspace/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'files/pt-pt/web/mathml/element/mspace/index.html')
-rw-r--r--files/pt-pt/web/mathml/element/mspace/index.html88
1 files changed, 88 insertions, 0 deletions
diff --git a/files/pt-pt/web/mathml/element/mspace/index.html b/files/pt-pt/web/mathml/element/mspace/index.html
new file mode 100644
index 0000000000..1d5161228e
--- /dev/null
+++ b/files/pt-pt/web/mathml/element/mspace/index.html
@@ -0,0 +1,88 @@
+---
+title: <mspace>
+slug: Web/MathML/Element/mspace
+tags:
+ - MathML
+ - 'MathML:Element'
+ - 'MathML:Token Element'
+ - Referência de MathML
+translation_of: Web/MathML/Element/mspace
+---
+<div>{{MathMLRef}}</div>
+
+<p class="summary">O elemento de MathML <code>&lt;mspace&gt;</code> é usado para visualizar um espaço em branco, cujo tamanho é decidido pelos seus atributos.</p>
+
+<h2 id="Attributos">Attributos</h2>
+
+<dl>
+ <dt id="attr-class-id-style">class, id, style</dt>
+ <dd>Para uso com <em><a href="/pt-PT/docs/CSS">stylesheets</a></em>.</dd>
+ <dt id="attr-depth">depth</dt>
+ <dd>A profundidade desejada (abaixo da linha de base) do espaço (ver <a href="/pt-PT/docs/Web/MathML/Attribute/Valores#Comprimentos">comprimento</a> para valores e unidades).</dd>
+ <dt id="attr-height">height</dt>
+ <dd>A altura desejada (acima da linha de base) do espaço (ver <a href="/pt-PT/docs/Web/MathML/Attribute/Valores#Comprimentos">comprimento</a> para valores e unidades).</dd>
+ <dt id="attr-linebreak">linebreak</dt>
+ <dd>Indica uma quebra de linha no espaço. Valores aceites: <code>auto</code> (valor padrão), <code>newline</code>, <code>nobreak</code>, <code>goodbreak</code> e <code>badbreak</code>.<br>
+ A começar com MathML 3, é de preferencia usar {{ MathMLElement("mo") }} para controlar quebras de linha.</dd>
+ <dt id="attr-mathbackground">mathbackground</dt>
+ <dd>A cor de fundo. Pode usar <code>#rgb</code>, <code>#rrggbb</code> e <a href="/en-US/docs/CSS/color_value#Color_Keywords">nomes de cores HTML</a>.</dd>
+ <dt id="attr-width">width</dt>
+ <dd>A largura desejada do espaço (ver <a href="/pt-PT/docs/Web/MathML/Attribute/Valores#Comprimentos">comprimento</a> para valores e unidades).</dd>
+</dl>
+
+<p>Note que alguns atributos comuns como <code>mathcolor</code>, <code>mathvariant</code> ou <code>dir</code> não tem efeito no <code>&lt;mspace&gt;</code>.</p>
+
+<h2 id="Exemplos">Exemplos</h2>
+
+<pre class="brush: html notranslate">&lt;math&gt;
+
+ &lt;mspace depth="40px" height="20px" /&gt;
+
+ &lt;mspace width="100px" /&gt;
+
+&lt;/math&gt;
+</pre>
+
+<h2 id="Especificações">Especificações</h2>
+
+<table class="standard-table">
+ <thead>
+ <tr>
+ <th scope="col">Especificação</th>
+ <th scope="col">Estado</th>
+ <th scope="col">Comentários</th>
+ </tr>
+ </thead>
+ <tbody>
+ <tr>
+ <td>{{ SpecName('MathML3', 'chapter3.html#presm.mspace', 'mspace') }}</td>
+ <td>{{ Spec2('MathML3') }}</td>
+ <td>Especificação atual</td>
+ </tr>
+ <tr>
+ <td>{{ SpecName('MathML2', 'chapter3.html#presm.mspace', 'mspace') }}</td>
+ <td>{{ Spec2('MathML2') }}</td>
+ <td>Especificação inicial</td>
+ </tr>
+ </tbody>
+</table>
+
+<h2 id="Compatibilidade">Compatibilidade</h2>
+
+
+
+<p>{{Compat("mathml.elements.mspace")}}</p>
+
+<h2 id="Notas_para_Gecko">Notas para Gecko</h2>
+
+<ul>
+ <li><a class="external" href="http://www.w3.org/TR/MathML3/chapter3.html#presm.lbindent.attrs" title="http://www.w3.org/TR/MathML3/chapter3.html#presm.lbindent.attrs">Atributos de indentação</a> ainda não implementados (for Gecko see {{ bug("534962") }}).</li>
+ <li>Suporte para valores negativos do atributo <code>width</code> foram implementados em Gecko 23.0 {{geckoRelease("23.0")}}.</li>
+</ul>
+
+<h2 id="Ver_também">Ver também</h2>
+
+<ul>
+ <li>{{ MathMLElement("mpadded") }}</li>
+ <li>{{ MathMLElement("mphantom") }}</li>
+</ul>