Si el elástico se configura como verdadero, este atributo contiene el tamaño máximo del operador. Los valores posibles son infinito o cualquier unidad de longitud. Este atributo solo lo acepta la etiqueta <mo> .
Sintaxis:
<element maxsize="numbers">
Valor de atributo:
- números: Este atributo establece o el tamaño del operador.
El siguiente ejemplo ilustra el tamaño máximo en HTML5 MathML:
Ejemplo:
HTML
<!DOCTYPE html> <html> <head> <title>HTML5 MathML maxsize Attribute</title> </head> <body style="text-align:center;"> <h1 style="color:green"> GeeksforGeeks </h1> <h3>HTML5 MathML maxsize Attribute</h3> <math> <mrow> <mrow> <msup> <mi>x</mi> <mn>2</mn> </msup> <mo stretchy="true" maxsize="250em">+</mo> <msup> <mi>y</mi> <mn>2</mn> </msup> </mrow> <mo stretchy="true" maxsize="30em">=</mo> <msup> <mi>z</mi> <mn>2</mn> </msup> </mrow> </math> </body> </html>
Producción:
Navegadores compatibles: los navegadores compatibles con el atributo maxsize 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