MathML Tutorial
MathML Symbols
MathML Useful Resources
Selected Reading
- MathML - Underscript-Overscript
- MathML - Underscript
- MathML - Superscripts
- MathML - Subscript-Superscript
- MathML - Subscripts
- MathML - Style
- MathML - Repeating Decimals
- MathML - Radicals
- MathML - Phantom
- MathML - Padding
- MathML - Overscript
- MathML - Multiplication
- MathML - Matrices
- MathML - Long Division
- MathML - Fractions
- MathML - Fencing
- MathML - Enclosing
- MathML - Carries
- MathML - Basic Elements
- MathML - All Elements
- MathML - Overview
- MathML - Home
MathML Symbols
- MathML - Set Symbols
- MathML - Logic Symbols
- MathML - Invisible Operators
- MathML - Greek Letters
- MathML - Geometry Symbols
- MathML - Function Symbols
- MathML - Ellipses Symbols
- MathML - Calculus Symbols
- MathML - Algebra Symbols
MathML Useful Resources
Selected Reading
- Who is Who
- Computer Glossary
- HR Interview Questions
- Effective Resume Writing
- Questions and Answers
- UPSC IAS Exams Notes
MathML - Padding
MathML - Padding
<mpadded> element is used to add padding, or extra space, around its content. It can be used to adjust size and positioning e.g. negative padding,which can cause the content of mpadded to overlap the rendering of neighboring content.
Syntax
Here is the simple syntax to use this tag −
<mpadded> expression </mpadded>
Parameters
Here is the description of all the parameters of this tag −
expression − inferred mrow of multiple children.
Attributes
Here is the description of all the attributes of this tag −
height − To sets or increment the height of the mpadded element.
depth − To sets or increment the depth of the mpadded element.
width − To sets or increment the width of the mpadded element.
lspace − To sets the horizontal space of the child content.
voffset − To sets the vertical space of the child content.
Examples
Example 1
<math xmlns = "http://www.w3.org/1998/Math/MathML"> <mrow> <mi>x</mi> <mpadded lspace = "0.2em" voffset = "0.3ex"> <mi>y</mi> </mpadded> <mi>z</mi> </mrow> </math>
Output
Example 2
<math xmlns = "http://www.w3.org/1998/Math/MathML"> <mrow> <mi>x</mi> <mpadded width = "+90%width" height = "+0.3ex" depth = "+0.3ex"> <mi>y</mi> </mpadded> <mi>z</mi> </mrow> </math>
Output
Example 3
<math xmlns = "http://www.w3.org/1998/Math/MathML"> <mrow> <mi>x</mi> <mpadded lspace = "0.3em" width = "+0.6em"> <mi>y</mi> </mpadded> <mi>z</mi> </mrow> </math>