Atributo HTML5 MathML dir

Este atributo contiene el valor de dirección. Contiene dos tipos de valores de dirección ltr de izquierda a derecha y rtl de derecha a izquierda. Este atributo es aceptado por <math> , <mi> , <mo> , <mrow> , <ms> y <mtext> .

Sintaxis:

<element dir="ltr|rtl">

Valores de atributos:

  • ltr: Este valor mantiene la dirección de izquierda a derecha.
  • rtl: este valor mantiene la dirección de derecha a izquierda.

El siguiente ejemplo ilustra el atributo dir en HTML5 MathML:

Ejemplo:

HTML

<!DOCTYPE html> 
<html> 
  
<head> 
    <title>HTML5 MathML dir attribute</title> 
</head> 
  
<body> 
    <center> 
        <h1 style="color:green"> 
            GeeksforGeeks 
        </h1> 
          
        <h3>HTML5 MathML dir attribute</h3> 
          
        <math dir="rtl"> 
            <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> 
        </math> 
    </center> 
</body> 
  
</html> 

Producción:

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