📅  最后修改于: 2023-12-03 15:15:43.221000             🧑  作者: Mango
HTML5 MathML rspace 属性表示在数学公式中使用的空格的宽度。该属性可以应用于数学公式的任何元素。
<element rspace="length">
其中,element
可以是以下任何一个数学公式元素:
<math>
<menclose>
<merror>
<mfenced>
<mfrac>
<mglyph>
<mi>
<mlabeledtr>
<mmultiscripts>
<mn>
<mo>
<mover>
<mpadded>
<mphantom>
<mroot>
<mrow>
<mstyle>
<msub>
<msubsup>
<msup>
<mtable>
<mtd>
<mtext>
<mtr>
<munder>
<munderover>
<none>
length
是一个数字,表示 rspace 属性的值。可以使用以下单位:
em
:相对于当前字体大小的“M”宽度。ex
:相对于当前字体大小的“x”高度。px
:像素。%
:百分比。<math>
<mrow>
<msup>
<mi>x</mi>
<mn>2</mn>
</msup>
<mo rspace="12px">+</mo>
<mi>x</mi>
<mo rspace="12px">+</mo>
<mn>1</mn>
</mrow>
</math>
上述示例中,我们在加号符号两侧添加了一个宽度为 12 像素的空格,使公式更具可读性。
mspace
元素。lspace
和 rspace
属性,则应使用 width
属性来设置元素的总宽度。