La etiqueta MathML <mphantom> en HTML5 se utiliza para representar de forma invisible, pero las dimensiones aún se mantienen.
Sintaxis:
<mphantom> Child elements </mphantom>
Atributos: esta etiqueta acepta algunos atributos que se enumeran a continuación:
- class|id|style: este atributo se utiliza para contener los estilos de los elementos secundarios.
- fondo matemático: este atributo contiene el valor del color de fondo de las expresiones matemáticas.
El siguiente ejemplo ilustrará el concepto de la etiqueta HTML 5 MathML <mphantom>:
Ejemplo:
html
<!DOCTYPE html> <html> <head> <title>HTML5 mphantom tag</title> </head> <body style="text-align:center;"> <h1 style="color:green">GeeksforGeeks</h1> <h3>HTML5 MathML <mphantom> tag</h3> <math> <maction actiontype="toggle"> <mfrac> <mn>25</mn> <mn>10</mn> </mfrac> <mfrac> <mrow> <mphantom> <mn>5</mn> <mo>⋅</mo> <mn>5</mn> </mphantom> </mrow> <mrow> <mphantom> <mn>2</mn> <mo>⋅</mo> <mn>5</mn> </mphantom> </mrow> </mfrac> <mfrac> <mn>2</mn> <mn>5</mn> </mfrac> </maction> </math> <p> By clicking the number you can see 5*5 and 2*5 is invisible </p> </body> </html>
Producción:
Navegadores compatibles: los navegadores compatibles con la etiqueta HTML5 MathML <mphantom> se enumeran a continuación:
- Firefox
- Safari
Publicación traducida automáticamente
Artículo escrito por skyridetim y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA