Este atributo contiene el valor de la longitud del espacio después del valor predeterminado del operador thickmathspace (4.32px). Este atributo solo lo acepta la etiqueta MathML <mo> .
Sintaxis:
<element lspace="length">
Valores de atributos:
- length: este atributo contiene el valor de la longitud del espacio después de que el valor predeterminado del operador sea thickmathspace (4.32px).
El siguiente ejemplo ilustra el atributo rspace en HTML5 MathML:
Ejemplo:
HTML
<!DOCTYPE html> <html> <head> <title>HTML5 MathML rspace Attribute</title> </head> <body style="text-align:center;"> <h1 style="color:green"> GeeksforGeeks </h1> <h3>HTML5 MathML rspace Attribute</h3> <math> <mpadded> <mrow> <mrow> <msup> <mi>x</mi> <mn>2</mn> </msup> <mo rspace="120px">+</mo > <msup> <mi>y</mi> <mn>2</mn> </msup> </mrow> <mo rspace="120px">=</mo> <msup> <mi>z</mi> <mn>2</mn> </msup> </mrow> </mpadded> </math> </body> </html>
Producción:
Navegadores compatibles: los navegadores compatibles con el atributo rspace de HTML5 MathML se enumeran a continuación:
- Firefox
Publicación traducida automáticamente
Artículo escrito por skyridetim y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA