From 59f1389c6023be8ec1435f8f7e55d7de5a302b5b Mon Sep 17 00:00:00 2001 From: Florian Merz Date: Mon, 8 Mar 2021 22:37:08 +0100 Subject: sync translated content --- files/pt-pt/web/mathml/element/mglyph/index.html | 72 ---------------- .../pt-pt/web/mathml/element/mlabeledtr/index.html | 99 ---------------------- 2 files changed, 171 deletions(-) delete mode 100644 files/pt-pt/web/mathml/element/mglyph/index.html delete mode 100644 files/pt-pt/web/mathml/element/mlabeledtr/index.html (limited to 'files/pt-pt/web') diff --git a/files/pt-pt/web/mathml/element/mglyph/index.html b/files/pt-pt/web/mathml/element/mglyph/index.html deleted file mode 100644 index 1ae5f170dc..0000000000 --- a/files/pt-pt/web/mathml/element/mglyph/index.html +++ /dev/null @@ -1,72 +0,0 @@ ---- -title: -slug: Web/MathML/Element/mglyph -tags: - - MathML - - 'MathML:Element' - - Referência de MathML -translation_of: Web/MathML/Element/mglyph ---- -
{{MathMLRef}}
- -

O elemento de MathML <mglyph> é usado para apresentar símbolos sem carateres de Unicode disponíveis. Pode ser usado dentro de token elements.

- -

Atributos

- -
-
alt
-
Este atributo define o texto alternativo que descreve a imagem. Os utilizadores verão isto apresentado se o URL da imagem estiver errado, se a imagem não estiver num dos formatos suportados, ou até a imagem ser descarregada.
-
class, id, style
-
Para uso com stylesheets.
-
height
-
A altura da imagem.
-
href
-
Usado para criar uma hiperligação para um URI.
-
mathbackground
-
A cor de fundo (se a imagem tem transparência). Pode usar #rgb, #rrggbb e nomes de cores de HTML.
-
src
-
O URL da imagem.
-
valign
-
Indica o alinhamento vertical com respeito à linha de base atual.
-
width
-
A largura da imagem.
-
- -

Exemplos

- -
<math>
-  <mi><mglyph src="my-glyph.png" alt="my glyph"/></mi>
-</math>
-
- -

Especificações

- - - - - - - - - - - - - - - - - - - - - -
EspecificaçãoEstadoComentário
{{ SpecName('MathML3', 'chapter3.html#presm.mglyph', 'mglyph') }}{{ Spec2('MathML3') }}Especificação atual
{{ SpecName('MathML2', 'chapter3.html#presm.mglyph', 'mglyph') }}{{ Spec2('MathML2') }}Especificação inicial
- -

Compatibilidade

- - - - - -

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

diff --git a/files/pt-pt/web/mathml/element/mlabeledtr/index.html b/files/pt-pt/web/mathml/element/mlabeledtr/index.html deleted file mode 100644 index 6f91a6b2d7..0000000000 --- a/files/pt-pt/web/mathml/element/mlabeledtr/index.html +++ /dev/null @@ -1,99 +0,0 @@ ---- -title: -slug: Web/MathML/Element/mlabeledtr -tags: - - MathML - - 'MathML:Element' - - 'MathML:Tabular Math' - - Referência de MathML -translation_of: Web/MathML/Element/mlabeledtr ---- -
{{MathMLRef}}
- -

O elemento MathML <mlabeledtr> é utilizado para representar um rótulo/etiqueta numa fila quer do lado esquerdo, quer do direito (determinado utilizando o atributo side no elemento {{MathMLElement("mtable") }}). Os elementos criança de <mlabeledtr> devem ser {{MathMLElement("mtd") }} elementos. A primeira criança é o rótulo, enquanto todas as outras crianças representam conteúdos de linha e são tratadas de forma idêntica às crianças de elementos {{MathMLElement("mtr") }}.

- -

Atributos

- -
-
class, id, style
-
Para uso com stylesheets.
-
columnalign
-
Indica o alinhamento horizontal desta célula e sobrepõe o valor especificado por {{ MathMLElement("mtable") }}.
- Os valores possíveis são: left, center e right.
-
groupalign
-
{{ unimplemented_inline() }}
-
href
-
Usado para criar uma hiperligação para um URI.
-
mathbackground
-
A cor de fundo. Pode usar #rgb, #rrggbb e nomes de cores de HTML.
-
mathcolor
-
A cor do texto. Pode usar #rgb, #rrggbb e nomes de cores de HTML.
-
rowalign
-
Indica o alinhamento vertical desta célula e sobrepõe o valor especificado por {{ MathMLElement("mtable") }}.
- Os valores possíveis são: axis, baseline, bottom, center e top.
-
- -

Exemplos

- -

Exemplo: sample rendering for mlabeledtr

- -
<math>
-  <mtable>
-
-    <mlabeledtr>
-      <mtd><mn>1</mn></mtd> <!-- label -->
-      <mtd><mi>A</mi></mtd>
-      <mtd><mi>B</mi></mtd>
-    </mlabeledtr>
-
-    <mtr>
-      <mtd><mi>C</mi></mtd>
-      <mtd><mi>D</mi></mtd>
-      <mtd><mi>E</mi></mtd>
-    </mtr>
-
-  </mtable>
-</math>
-
- -

Especificações

- - - - - - - - - - - - - - - - - - - - - -
EspecificaçãoEstadoComentário
{{ SpecName('MathML3', 'chapter3.html#presm.mlabeledtr', 'mlabeledtr') }}{{ Spec2('MathML3') }}Especificação atual
{{ SpecName('MathML2', 'chapter3.html#presm.mlabeledtr', 'mlabeledtr') }}{{ Spec2('MathML2') }}Especificação inicial
- -

Compatibilidade

- - - -

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

- -

Notas para Gecko

- -

A começar com Gecko 9.0 {{ geckoRelease("9.0") }} etiquetas são escondidas por pré-definição (mlabeledtr > mtd:first-child {display: none}) e não estragam a apresentação de tabelas por completo (ver {{ bug("356870") }}). Para ver a implementação deste elemento veja {{ bug("689641") }}.

- -

Ver também

- -
    -
  • {{ MathMLElement("mtable") }} (Tabela)
  • -
  • {{ MathMLElement("mtd") }} (Célula de tabela)
  • -
  • {{ MathMLElement("mtr") }} (Fila de Tabela)
  • -
-- cgit v1.2.3-54-g00ecf