The MathML <msubsup> tag in HTML5 is used to print base power and power on any expression. This means Superscript and subscript both can be used at the same time.
Syntax:
<msubsup> child elements </msubsup>
Attributes: This tag accepts some attributes which are listed below:
- class|id|style: This attribute is used to hold the styles of the child elements.
- mathbackground: This attribute holds the value of the math expressions background color.
- href: This attribute is used to hold any hyperlink to a specified URL.
- mathcolor: This attribute holds the color of the math expressions.
- subscriptshift: This attribute defines the minimum space that shift the subscript below the baseline of the expression.
- superscriptshift: This attribute defines the minimum space that shift the superscript above the baseline of the expression.
Below example illustrates the MathML <msubsup> tag in HTML5:
Example:
html
<!DOCTYPE html>
< html >
< head >
< title >HTML5 MathML msubsup tag</ title >
</ head >
< body >
< center >
< h1 style = "color:green" >
GeeksforGeeks
</ h1 >
< h3 >HTML5 MathML < msubsup > tag</ h3 >
< math >
< mrow >
< msubsup >
< mo > ∑</ mo >
< mn > i=1 </ mn >
< mn > n </ mn >
</ msubsup >
< mo >+</ mo >
< msub >
< mi >x</ mi >
< mn >i</ mn >
</ msub >
< mo >=</ mo >
< mn >?</ mn >
</ mrow >
</ math >
</ center >
</ body >
</ html >
|
Output:

Supported Browsers: The browsers supported by HTML5 MathML <msubsup> tag are listed below:
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out -
check it out now!
Last Updated :
22 Aug, 2021
Like Article
Save Article