From a66ead0df0c9c0fd615ce926e459d7c4e279f8e1 Mon Sep 17 00:00:00 2001 From: Mozart Maia <37476677+mozart-maia@users.noreply.github.com> Date: Mon, 4 Mar 2024 10:17:07 -0300 Subject: [PATCH] =?UTF-8?q?Feat=20add=20example=20to=20MathML=20mtd=20page?= =?UTF-8?q?=20using=20example=20given=20in=20w3c=20mathml=E2=80=A6=20(#325?= =?UTF-8?q?32)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Feat add example to MathML mtd page using example given in w3c mathml core --- files/en-us/web/mathml/element/mtd/index.md | 37 +++++++++++++++++++++ 1 file changed, 37 insertions(+) diff --git a/files/en-us/web/mathml/element/mtd/index.md b/files/en-us/web/mathml/element/mtd/index.md index 3a3eb2ce86a5066..59e0d624108fbe2 100644 --- a/files/en-us/web/mathml/element/mtd/index.md +++ b/files/en-us/web/mathml/element/mtd/index.md @@ -27,6 +27,43 @@ Some browsers may also support the following attributes: - : Specifies the vertical alignment of this cell and overrides values specified by {{ MathMLElement("mtable") }} or {{ MathMLElement("mtr") }}. Possible values are: `axis`, `baseline`, `bottom`, `center` and `top`. +## Examples + +### Matrix using mtable, mrow, mtr and mtd + +```html + + + A + 2 + + = + + ( + + + 1 + 2 + 3 + + + 4 + 5 + 6 + + + 7 + 8 + 9 + + + ) + + +``` + +{{EmbedLiveSample('Alignment with row number')}} + ## Specifications {{Specifications}}