Este atributo contiene los paréntesis de apertura de cualquier ecuación igual que el atributo de cierre. Este atributo es aceptado por la etiqueta <mfenched> .
Sintaxis:
<element open="parentheses">
Valor de atributo:
- Paréntesis: contiene los paréntesis que se utilizarán para abrir cualquier ecuación.
El siguiente ejemplo ilustra el atributo abierto en HTML5 MathML:
Ejemplo :
HTML
<!DOCTYPE html> <html> <head> <title>HTML5 MathML open attribute</title> </head> <body> <center> <h1 style="color:green"> GeeksforGeeks </h1> <h3>HTML5 MathML open attribute</h3> <math> <mfenced open="{" close="}" separators=""> <mrow> <msup> <mi>x</mi> <mn>2</mn> </msup> <mo>+</mo> <msup> <mi>y</mi> <mn>2</mn> </msup> <mo>=</mo> <msup> <mi>z</mi> <mn>2</mn> </msup> </mrow> </mfenced> </math> </center> </body> </html>
Producción:
Navegadores compatibles: los navegadores compatibles con el atributo abierto 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