Atributo de profundidad HTML5 MathML

Este atributo se utiliza para establecer la profundidad o aumentar/disminuir la profundidad del contenido. Este atributo solo lo acepta la etiqueta <mpadded>.

Sintaxis:

<element depth="length">

Valores de atributos:

  • longitud: este atributo establece o incrementa la profundidad.

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

Ejemplo:

HTML

<!DOCTYPE html> 
<html> 
  
<head> 
    <title>HTML5 MathML depth attribute</title> 
</head> 
  
<body style="text-align:center;"> 
      
    <h1 style="color:green"> 
        GeeksforGeeks 
    </h1> 
      
    <h3>HTML5 MathML depth attribute</h3> 
      
    <math> 
        <mpadded depth="20"> 
            <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 profundidad 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 *