Es un Atributo Booleano y se usa para ordenar la lista en Orden Descendente (9, 8, 7, 6…..) en lugar de orden ascendente (1, 2, 3….).
Sintaxis:
<ol reversed> <li> Content... </li> <li> Content... </li> ... <li> Content... </li> </ol>
Aplicable:
Atributos: Incluye atributos individuales invertidos . Es un atributo booleano que especifica la lista en orden descendente.
Ejemplo:
html
<!DOCTYPE html> <html> <head> <title>reversed attribute</title> <style> h1, h2 { text-align:center; } </style> </head> <body> <h1 style ="color:green;font-style:italic;"> GeeksforGeeks </h1> <h2 style="color:green;font-style:italic;"> HTML reversed attribute </h2> <p>List of all computer Subjects are</p> <ol reversed> <li>Data Structures</li> <li>Operating System</li> <li>python programming</li> <li>DBMS</LI> <li>Computer Network</li> </ol> </body> </html>
Producción:
Navegadores compatibles: los navegadores compatibles con los atributos invertidos de HTML se enumeran a continuación:
- Google Chrome 18.0 y superior
- Edge 79.0 y superior
- Firefox 18.0
- Ópera
- Safari 6.0 y superior
Publicación traducida automáticamente
Artículo escrito por ManasChhabra2 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA