Atributo de altura HTML5 MathML

Este atributo contiene la longitud del valor de la altura, es decir, la profundidad deseada por encima de la línea de base. Este atributo es aceptado por tres etiquetas <mglyph> , <mpadded> y <mspace> .

Sintaxis:

<element height="length">

Valores de atributos:

  • longitud: este atributo establece o incrementa la profundidad.

El siguiente ejemplo ilustra el atributo de altura en HTML5 MathML:

Ejemplo:

HTML

<!DOCTYPE html> 
<html> 
  
<head> 
    <title>HTML5 MathML height attribute</title> 
</head> 
  
<body style="text-align:center;"> 
      
    <h1 style="color:green"> 
        GeeksforGeeks 
    </h1> 
      
    <h3>HTML5 MathML height attribute</h3> 
      
    <math> 
        <mpadded height="+150px" width="200px"
                    lspace="2height"> 
            <mrow> 
                <mrow> 
                    <msup> 
                        <mi>x</mi> 
                        <mn>2</mn> 
                    </msup> 
                    <mo>+</mo> 
                    <msup> 
                        <mi>y</mi> 
                        <mn>2</mn> 
                    </msup> 
                </mrow> 
                <mo>=</mo> 
                <msup> 
                    <mi>z</mi> 
                    <mn>2</mn> 
                </msup> 
            </mrow> 
        </mpadded> 
    </math> 
</body> 
  
</html>

Producción:

Navegadores compatibles: los navegadores compatibles con el atributo de altura 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

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *