Este atributo se utiliza para especificar la dirección del texto del contenido del elemento.
Etiquetas compatibles: Ir admite todos los elementos HTML.
Nota: este atributo se deprecia de HTML 5.
Sintaxis:
<element dir = "ltr | rtl | auto">
Valor del atributo: este atributo contiene tres valores que se enumeran a continuación:
- ltr: Es el valor por defecto. Este valor representa el texto en la dirección del texto de izquierda a derecha.
- rtl: este valor representa el texto en la dirección del texto de derecha a izquierda.
- auto: permite que el navegador descubra la dirección del texto, según el contenido.
Ejemplo 1:
html
<!DOCTYPE html> <html> <head> <title>dir attribute</title> <style> h1 { color:green; } h1, h2 { text-align:center; } </style> </head> <body> <h1>GeeksforGeeks</h1> <h2>dir attribute</h2> <p dir="rtl">GeeksforGeeks: A computer science portal for geeks</p> </body> </html>
Producción:
Ejemplo 2:
html
<!DOCTYPE html> <html> <head> <title>dir attribute</title> <style> h1 { color:green; } h1, h2 { text-align:center; } </style> </head> <body> <h1>GeeksforGeeks</h1> <h2>dir attribute</h2> <p dir="ltr">GeeksforGeeks: A computer science portal for geeks</p> </body> </html>
Producción:
Navegadores compatibles: los navegadores compatibles con el atributo dir se enumeran a continuación:
- Cromo
- explorador de Internet
- Firefox
- Ópera
- Safari