Open In App

HTML5 MathML <mmultiscripts> Tag

Last Updated : 07 Jul, 2023
Comments
Improve
Suggest changes
Like Article
Like
Report

The MathML <mmultiscripts> tag in HTML5 is used to create multi-dimensional matrices. The degree depends on the conditionality of a representative array. As a number/digit is a 0-dimensional array. 1st order Tensor and 2nd order tensor as a squire matrices will represent a 1-dimensional array.

Syntax:  

 <mmultiscripts> child elements </mmultiscripts>

Attributes: This tag accepts below mentioned attributes:  

  • class|id|style: This attribute holds the styles of the child elements.
  • href: This attribute holds any hyperlink to a specified URL.
  • mathbackground: This attribute holds the value of the math expressions background color.
  • mathcolor: This attribute holds the color of the math expressions.
  • subscriptshift: This attribute defines the minimum space by which to shift the subscript below the baseline of the expression.
  • superscriptshift: This attribute defines the minimum space by which to shift the subscript above the baseline of the expression

Below example illustrates the concept of HTML5 MathML <mmultiscripts> tag:

Example:  

html
<!DOCTYPE html>
<html>

<head>
    <title>HTML5 MathML mmultiscripts tag</title>
</head>

<body>
    <center>
        <h1 style="color:green">GeeksforGeeks</h1>

        <h3>HTML5 MathML mmultiscripts Tag</h3>

        <math>
            <mmultiscripts>

                <!-- base expression -->
                <mi>for</mi>

                <!-- postsubscript -->
                <none />

                <!-- postsuperscript -->
                <mi>Geeks</mi>

                <mprescripts />

                <!-- presubscript -->
                <mi>Geeks</mi>

                <!-- presuperscript -->
                <none />

            </mmultiscripts>
        </math>
    </center>
</body>

</html>

Output: 

Screenshot-from-2023-07-06-17-18-37

Supported Browsers: The browsers are supported by HTML5 MathML <mmultiscripts> tag are listed below: 

  • Firefox
  • Safari

Next Article

Similar Reads