Este atributo mantiene los paréntesis de cierre de cualquier ecuación igual que el atributo abierto . Este atributo es aceptado por la etiqueta <mfenched> .
Sintaxis:
<element close="parentheses">
Valor de atributo:
- Paréntesis: Contiene los paréntesis que se utilizarán para cerrar cualquier ecuación.
Ejemplo: El siguiente ejemplo ilustra el atributo de cierre en HTML5 MathML.
HTML
<!DOCTYPE html> <html> <body> <center> <h1 style="color:green"> GeeksforGeeks </h1> <h3>HTML5 MathML close 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> </mfenched> </math> </center> </body> </html>
Producción:
Navegadores compatibles: los navegadores compatibles con el atributo de cierre 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